35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"baseUrl": "src", // ⚠️ Wichtig: Startpunkt für Pfad-Aliase
|
|
"paths": {
|
|
"*": ["*", "./*"] // ⚠️ Ermöglicht z. B. import { X } from 'elements/X'
|
|
},
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"allowJs": true,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["ES2020", "DOM"]
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|
|
|