waveterm/tsconfig.json

32 lines
1.5 KiB
JSON
Raw Normal View History

{
"include": ["src/**/*", "types/**/*"],
"compilerOptions": {
"target": "es5",
"module": "commonjs",
2023-11-30 03:23:47 +01:00
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
2023-11-30 03:23:47 +01:00
"experimentalDecorators": true,
"downlevelIteration": true,
"baseUrl": "./",
"paths": {
"@/app/*": ["src/app/*"], // Points to the src folder
"@/util/*": ["src/util/*"], // Points to the src folder
"@/models": ["src/models/index"], // Points directly to the index file
"@/models/*": ["src/models/*"], // For everything else inside models
"@/common/*": ["src/app/common/*"], // For everything else inside models
"@/elements": ["src/app/common/elements/index"], // Points directly to the index file
"@/elements/*": ["src/app/common/elements/*"], // For everything else inside models
"@/modals": ["src/app/common/modals/index"], // Points directly to the index file
"@/modals/*": ["src/app/common/modals/*"], // For everything else inside models
"@/assets/*": ["src/app/assets/*"], // For everything else inside models
"@/plugins/*": ["src/plugins/*"], // For everything else inside models
}
}
}