mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
9233b3dbd7
Co-authored-by: Sylvia Crowe <software@oneirocosm.com> Co-authored-by: sawka <mike.sawka@gmail.com>
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"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,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/app/*": ["frontend/app/*"],
|
|
"@/util/*": ["frontend/util/*"],
|
|
"@/layout/*": ["frontend/layout/*"],
|
|
"@/store/*": ["frontend/app/store/*"],
|
|
"@/view/*": ["frontend/app/view/*"],
|
|
"@/element/*": ["frontend/app/element/*"],
|
|
"@/bindings/*": ["frontend/bindings/github.com/wavetermdev/thenextwave/pkg/service/*"],
|
|
"@/gopkg/*": ["frontend/bindings/github.com/wavetermdev/thenextwave/pkg/*"],
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-svgr/client"
|
|
]
|
|
},
|
|
}
|