2020-05-02 07:35:33 +02:00
|
|
|
{
|
2022-10-30 07:10:11 +01:00
|
|
|
"extends": "@tsconfig/node16/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,
|
2020-05-02 07:35:33 +02:00
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"outDir": "dist/",
|
2021-09-13 05:08:43 +02:00
|
|
|
"sourceMap": 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"
|
|
|
|
]
|
|
|
|
}
|