mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-10 08:04:05 +00:00
39 lines
844 B
JSON
39 lines
844 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./lib",
|
|
"declaration": true,
|
|
// "declarationDir": "./lib",
|
|
"module": "ES6",
|
|
"target": "ES6",
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": 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"
|
|
]
|
|
}
|
|
|