Files
week-organizer-app/tsconfig.json
T

21 lines
578 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/**/*"]
}