data-structure-typed/tsconfig.prod.json

26 lines
412 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"outDir": "./dist",
"sourceMap": true,
"lib": [
2023-09-27 01:27:34 +00:00
"ESNext"
],
"strict": true,
"downlevelIteration": true,
2023-09-27 01:27:34 +00:00
"removeComments": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": ["src/**/*.ts", "src/**/*.js"],
"exclude": [
"node_modules",
"lib",
2023-09-27 01:27:34 +00:00
"dist",
"umd"
]
}