32 lines
652 B
JSON
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/**/*"
|
|
]
|
|
}
|