mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-10 08:04:05 +00:00
34 lines
690 B
JSON
34 lines
690 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES5",
|
||
|
"module": "CommonJS",
|
||
|
"outDir": "./dist",
|
||
|
"sourceMap": true,
|
||
|
"lib": [
|
||
|
"esnext",
|
||
|
"dom"
|
||
|
],
|
||
|
"strict": true,
|
||
|
"downlevelIteration": true,
|
||
|
"removeComments": true,
|
||
|
// "allowJs": true,
|
||
|
// "allowSyntheticDefaultImports": true,
|
||
|
// "forceConsistentCasingInFileNames": true,
|
||
|
// "noFallthroughCasesInSwitch": true,
|
||
|
// "resolveJsonModule": true,
|
||
|
// "isolatedModules": true,
|
||
|
// "noEmit": true,
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
|
||
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"lib",
|
||
|
"dist"
|
||
|
]
|
||
|
}
|
||
|
|