25 lines
622 B
JSON
25 lines
622 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
/* Bundler (esbuild) kompiliert - tsc wird nur zum Typprüfen genutzt */
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
|
|
/* Strenge Typprüfung */
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["dev/scripts/**/*.ts"]
|
|
}
|