Command-fix/tsconfig.json

29 lines
617 B
JSON
Raw Normal View History

2020-05-02 07:35:33 +02:00
{
"extends": "@tsconfig/node20/tsconfig.json",
2020-05-02 07:35:33 +02:00
"compilerOptions": {
2022-09-14 10:30:27 +02:00
"module": "esnext",
2020-05-02 07:35:33 +02:00
"noImplicitAny": true,
2020-05-03 04:17:51 +02:00
"strictNullChecks": true,
2022-12-31 10:05:32 +01:00
"resolveJsonModule": true,
2020-05-02 07:35:33 +02:00
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
2022-12-31 10:05:32 +01:00
"esModuleInterop": true,
2021-10-22 09:43:32 +02:00
"lib": [
"es2018",
"dom"
2022-09-14 10:30:56 +02:00
],
"typeRoots": [
"./typings",
"./node_modules/@types/"
]
2020-05-02 07:35:33 +02:00
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}