Command-fix/tsconfig.json

24 lines
480 B
JSON
Raw Normal View History

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