2024-12-14 09:56:04 +02:00
|
|
|
{
|
2025-01-09 18:07:02 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "NodeNext",
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./build",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"resolveJsonModule": true,
|
2025-01-11 18:58:51 +02:00
|
|
|
"lib": ["ES2023"],
|
2025-01-09 18:07:02 +02:00
|
|
|
"downlevelIteration": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true
|
|
|
|
},
|
|
|
|
"include": ["./src/public/app/**/*"],
|
2025-01-09 20:20:06 +02:00
|
|
|
"files": [
|
|
|
|
"./src/public/app/types.d.ts",
|
2025-02-25 08:58:37 +01:00
|
|
|
"./src/public/app/types-lib.d.ts",
|
|
|
|
"./src/types.d.ts"
|
2025-01-09 20:20:06 +02:00
|
|
|
]
|
2025-01-09 18:07:02 +02:00
|
|
|
}
|