mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-10 08:04:05 +00:00
27 lines
437 B
JSON
27 lines
437 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "CommonJS",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"removeComments": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"dist",
|
|
"umd"
|
|
]
|
|
}
|
|
|