2025-02-17 22:09:27 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "NodeNext",
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": true,
|
2025-03-09 08:29:03 +01:00
|
|
|
"outDir": "./build",
|
2025-02-17 22:09:27 +01:00
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"verbatimModuleSyntax": true
|
|
|
|
},
|
2025-02-17 23:30:22 +01:00
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.js", "./*.ts"],
|
2025-02-17 22:09:27 +01:00
|
|
|
"exclude": [
|
|
|
|
"./**/*.spec.ts",
|
|
|
|
"./src/public/**/*",
|
2025-02-17 23:30:22 +01:00
|
|
|
"./*.config.ts",
|
2025-02-17 22:09:27 +01:00
|
|
|
],
|
|
|
|
"files": ["src/types.d.ts"]
|
|
|
|
}
|