mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
22 lines
519 B
JSON
22 lines
519 B
JSON
// frontend/tsconfig.json - SO FUNKTIONIERT ES
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"@premium-frontend/*": ["../premium/frontendPRO/src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |