Files
CPLv4.0/tsconfig.json
2025-01-25 00:20:19 +01:00

32 lines
1.3 KiB
JSON

{
"compilerOptions": {
"target": "esnext", // Ziel-JavaScript-Version
"lib": [
"dom",
"dom.iterable",
"esnext"
], // Eingeschlossene Bibliotheken
"allowJs": true, // JavaScript-Dateien zulassen
"skipLibCheck": true, // Überspringe Typprüfung in Bibliotheken
"strict": true, // Aktiviert strikte Typüberprüfung
"forceConsistentCasingInFileNames": true, // Einheitliche Groß-/Kleinschreibung
"noEmit": true, // Keine Ausgabedateien erzeugen
"esModuleInterop": true, // Kompatibilität mit CommonJS-Modulen
"module": "esnext", // Modultyp
"moduleResolution": "node", // Modulauflösung
"resolveJsonModule": true, // Erlaube JSON-Dateien
"isolatedModules": true, // Isolierte Modulkompilierung
"jsx": "preserve" // JSX-Transform für React
,
"incremental": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
, "public/CPLmockData/SERVICE/System.js", "public/CPLmockData/SERVICE/Start.js", "public/CPLmockData/SERVICE/kueData.js", "public/CPLmockData/SERVICE/de.js", "public/CPLmockData/SERVICE/ae.js", "public/CPL/SERVICE/System.js", "public/CPL/SERVICE/Start.js", "public/CPL/SERVICE/kueData.js", "public/CPL/SERVICE/de.js", "public/CPL/SERVICE/ae.js" ],
"exclude": [
"node_modules"
]
}