2021-04-08 12:19:38 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-20 17:51:24 +03:00
|
|
|
"outDir": "./dist",
|
|
|
|
"baseUrl": "./",
|
2021-04-08 12:19:38 +03:00
|
|
|
"module": "commonjs",
|
2022-05-05 20:08:38 +03:00
|
|
|
"target": "es2020",
|
2021-04-08 12:19:38 +03:00
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
2021-07-30 17:40:50 +03:00
|
|
|
"strict": true,
|
2021-04-08 12:19:38 +03:00
|
|
|
"noImplicitAny": true,
|
2021-07-30 17:40:50 +03:00
|
|
|
"noImplicitThis": true,
|
2021-04-08 12:19:38 +03:00
|
|
|
"incremental": true,
|
2023-06-05 03:30:48 +03:00
|
|
|
"stripInternal": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
2023-07-20 17:51:24 +03:00
|
|
|
"~scripts/*": ["scripts/*"],
|
2023-06-05 03:30:48 +03:00
|
|
|
},
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./tsfixes.d.ts"
|
|
|
|
]
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
2023-07-20 17:51:24 +03:00
|
|
|
"ts-node": {
|
|
|
|
"require": [
|
|
|
|
"tsconfig-paths/register"
|
|
|
|
]
|
|
|
|
},
|
2021-04-08 12:19:38 +03:00
|
|
|
"exclude": [
|
|
|
|
"private",
|
2023-07-20 17:51:24 +03:00
|
|
|
"node_modules",
|
|
|
|
"dist"
|
2021-04-08 12:19:38 +03:00
|
|
|
]
|
|
|
|
}
|