2024-05-14 06:42:25 +02:00
|
|
|
{
|
|
|
|
"include": ["frontend/**/*"],
|
|
|
|
"compilerOptions": {
|
2024-05-14 08:45:41 +02:00
|
|
|
"target": "es6",
|
2024-05-14 06:42:25 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
"jsx": "preserve",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2024-05-14 08:45:41 +02:00
|
|
|
"@/app/*": ["frontend/app/*"],
|
|
|
|
"@/util/*": ["frontend/util/*"],
|
|
|
|
"@/store/*": ["frontend/app/store/*"],
|
2024-05-14 18:37:41 +02:00
|
|
|
"@/element/*": ["frontend/app/element/*"],
|
2024-05-14 21:29:41 +02:00
|
|
|
"@/bindings/*": ["frontend/bindings/*"],
|
2024-05-14 06:42:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|