Base configuration

This commit is contained in:
2025-03-29 22:55:08 +01:00
parent 482b9cae09
commit 19180d4516
8 changed files with 411 additions and 0 deletions

34
tsconfig.json Normal file
View File

@@ -0,0 +1,34 @@
{
"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,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"lib": ["ES2020", "DOM"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}