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,
|
2024-05-28 21:12:28 +02:00
|
|
|
"baseUrl": "./",
|
2024-05-14 06:42:25 +02:00
|
|
|
"paths": {
|
2024-05-14 08:45:41 +02:00
|
|
|
"@/app/*": ["frontend/app/*"],
|
|
|
|
"@/util/*": ["frontend/util/*"],
|
2024-06-04 22:05:44 +02:00
|
|
|
"@/faraday/*": ["frontend/faraday/*"],
|
2024-05-14 08:45:41 +02:00
|
|
|
"@/store/*": ["frontend/app/store/*"],
|
2024-05-14 18:37:41 +02:00
|
|
|
"@/element/*": ["frontend/app/element/*"],
|
2024-05-21 20:09:22 +02:00
|
|
|
"@/bindings/*": ["frontend/bindings/github.com/wavetermdev/thenextwave/pkg/service/*"],
|
2024-06-04 22:05:44 +02:00
|
|
|
"@/gopkg/*": ["frontend/bindings/github.com/wavetermdev/thenextwave/pkg/*"],
|
2024-05-14 06:42:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|