Files
week-organizer-app/tsconfig.json
T
2026-08-10 18:10:28 +02:00

32 lines
652 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"moduleResolution": "bundler",
"rootDir": "./webapp",
"outDir": "./dist",
"paths": {
"de/paulvincenthorn/weekorganizer/weekorganizerapp/*": [
"./webapp/*"
],
"unit/*": [
"./webapp/test/unit/*"
],
"integration/*": [
"./webapp/test/integration/*"
]
},
"typeRoots": [
"./node_modules/@types",
"./node_modules/@sapui5/types"
]
},
"include": [
"./webapp/**/*"
]
}