waveterm/tsconfig.json

29 lines
1.0 KiB
JSON
Raw Normal View History

{
2024-06-12 02:42:10 +02:00
"include": ["frontend/**/*", "emain/**/*"],
"compilerOptions": {
"target": "es6",
"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": "./",
"paths": {
"@/app/*": ["frontend/app/*"],
"@/util/*": ["frontend/util/*"],
"@/faraday/*": ["frontend/faraday/*"],
"@/store/*": ["frontend/app/store/*"],
2024-07-09 00:04:48 +02:00
"@/view/*": ["frontend/app/view/*"],
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/*"],
"@/gopkg/*": ["frontend/bindings/github.com/wavetermdev/thenextwave/pkg/*"],
}
}
}