2020-05-02 07:35:33 +02:00
|
|
|
{
|
2023-07-27 10:31:45 +02:00
|
|
|
"extends": "@tsconfig/node20/tsconfig.json",
|
2020-05-02 07:35:33 +02:00
|
|
|
"compilerOptions": {
|
2023-09-04 07:23:15 +02:00
|
|
|
"module": "node16",
|
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,
|
2021-09-13 05:08:43 +02:00
|
|
|
"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/"
|
2023-04-15 05:47:10 +02:00
|
|
|
]
|
2020-05-02 07:35:33 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|