Cypress Umgebung ok
This commit is contained in:
@@ -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"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user