2025-07-24 22:17:38 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
2025-08-20 19:42:13 +02:00
|
|
|
"outDir": "./wwwroot/js",
|
2025-07-24 22:17:38 +02:00
|
|
|
"rootDir": "./src",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"inlineSourceMap": false,
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"]
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"js"
|
|
|
|
|
]
|
|
|
|
|
}
|