mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-10 08:04:05 +00:00
40 lines
838 B
JSON
40 lines
838 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": [
|
|
// "es2015",
|
|
"esnext"
|
|
],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"declarationDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
// "allowJs": true,
|
|
// "allowSyntheticDefaultImports": true,
|
|
// "forceConsistentCasingInFileNames": true,
|
|
// "noFallthroughCasesInSwitch": true,
|
|
// "resolveJsonModule": true,
|
|
// "isolatedModules": true,
|
|
// "noEmit": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
|
|
"include": [
|
|
"src",
|
|
],
|
|
"exclude": [
|
|
// "node_modules/data-structure-typed",
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|
|
|