Command-fix/tsconfig.json

29 lines
618 B
JSON
Raw Normal View History

2020-05-02 01:35:33 -04:00
{
2022-12-31 04:05:32 -05:00
"extends": "@tsconfig/node18/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,
2022-12-31 04:05:32 -05:00
"resolveJsonModule": true,
2020-05-02 01:35:33 -04:00
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
2022-12-31 04:05:32 -05:00
"esModuleInterop": true,
2021-10-22 03:43:32 -04:00
"lib": [
"es2018",
"dom"
2022-09-14 04:30:56 -04:00
],
"typeRoots": [
"./typings",
"./node_modules/@types/"
],
2020-05-02 01:35:33 -04:00
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}