Command-fix/tsconfig.json

24 lines
480 B
JSON
Raw Normal View History

2020-05-02 01:35:33 -04:00
{
"extends": "@tsconfig/node14/tsconfig.json",
2020-05-02 01:35:33 -04:00
"compilerOptions": {
2022-09-14 04:30:27 -04:00
"module": "esnext",
2020-05-02 01:35:33 -04:00
"noImplicitAny": true,
2020-05-02 22:17:51 -04:00
"strictNullChecks": true,
2020-05-02 01:35:33 -04:00
"removeComments": true,
"preserveConstEnums": true,
"outDir": "dist/",
"sourceMap": true,
2021-10-22 03:43:32 -04:00
"lib": [
"es2018",
"dom"
]
2020-05-02 01:35:33 -04:00
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}