mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* LANGUAGE AND ENVIRONMENT */
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
|
|
/* MODULES */
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
|
|
/* TYPE CHECKING */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
|
|
/* EMIT */
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
|
|
/* INTEROP CONSTRAINTS */
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* COMPATIBILITY */
|
|
"isolatedModules": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
"coverage",
|
|
"*.test.*",
|
|
"*.spec.*"
|
|
]
|
|
} |