2019-11-12 22:48:25 +03:00
|
|
|
{
|
2021-03-14 03:10:36 +03:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
2020-07-14 18:50:17 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"module": "commonjs",
|
2022-11-21 17:49:38 +03:00
|
|
|
"target": "es2021",
|
2020-07-14 18:50:17 +03:00
|
|
|
"outDir": "out",
|
2022-02-24 03:47:59 +03:00
|
|
|
"lib": ["ES2021"],
|
2020-07-14 18:50:17 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "src",
|
2022-09-14 15:14:13 +03:00
|
|
|
"skipLibCheck": true,
|
2020-07-14 18:50:17 +03:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"newLine": "lf",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noUnusedLocals": true,
|
2022-11-25 17:10:40 +03:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"esModuleInterop": true,
|
2022-12-02 15:40:12 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noEmit": true
|
2020-07-14 18:50:17 +03:00
|
|
|
},
|
2022-09-14 15:14:13 +03:00
|
|
|
"include": ["src/**/*.ts"],
|
2024-01-12 16:36:11 +03:00
|
|
|
"exclude": ["node_modules", "*.config.ts", "test", "**/view"]
|
2020-03-12 23:31:01 +03:00
|
|
|
}
|