You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
524 B
29 lines
524 B
{
|
|
"extends": "../../tsconfig.esm.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@ldo/dataset": [
|
|
"./src/index.ts"
|
|
],
|
|
"@ldo/dataset/*": [
|
|
"./src/*"
|
|
],
|
|
},
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": false,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |