Cypress Umgebung ok

This commit is contained in:
Ismail Ali
2025-01-26 20:47:56 +01:00
parent d9f2bc3465
commit b2d57fdaff
15 changed files with 6268 additions and 32 deletions

View File

@@ -1,30 +1,31 @@
{
"compilerOptions": {
"target": "esnext", // Ziel-JavaScript-Version
"target": "esnext",
"module": "commonjs",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"skipLibCheck": true,
"types": ["cypress"] ,
"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
,
],
"allowJs": true,
"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" ],
"src",
"**/*.test.ts",
"**/*.test.tsx"
],
"exclude": [
"node_modules"
]