2021-04-08 12:19:38 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-20 17:51:24 +03:00
|
|
|
"outDir": "./dist",
|
2023-10-16 19:23:53 +03:00
|
|
|
"module": "NodeNext",
|
|
|
|
"moduleResolution": "NodeNext",
|
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,
|
2023-06-12 23:28:30 +03:00
|
|
|
"allowSyntheticDefaultImports": 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-09-05 00:19:47 +03:00
|
|
|
"~scripts/*": ["./scripts/*"],
|
2023-06-05 03:30:48 +03:00
|
|
|
},
|
2023-10-16 19:23:53 +03:00
|
|
|
"composite": true
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
2023-07-20 17:51:24 +03:00
|
|
|
"ts-node": {
|
|
|
|
"require": [
|
|
|
|
"tsconfig-paths/register"
|
2023-10-16 19:23:53 +03:00
|
|
|
],
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
2023-07-20 17:51:24 +03:00
|
|
|
},
|
2021-04-08 12:19:38 +03:00
|
|
|
"exclude": [
|
2023-09-21 00:47:57 +03:00
|
|
|
"**/node_modules",
|
2021-04-08 12:19:38 +03:00
|
|
|
]
|
|
|
|
}
|