waveterm/tsconfig.json

36 lines
1.8 KiB
JSON
Raw Normal View History

{
"include": ["src/**/*", "types/**/*"],
"compilerOptions": {
"target": "es6",
"module": "commonjs",
2023-11-30 03:23:47 +01:00
"jsx": "preserve",
"lib": ["ES2022"],
"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": "./",
"types": ["@withfig/autocomplete-types"],
"paths": {
"@/app/*": ["src/app/*"], // Points to the app folder
"@/util/*": ["src/util/*"], // Points to the util folder
"@/models": ["src/models/index"], // Points directly to the models index file
"@/models/*": ["src/models/*"], // For everything else inside models
"@/common/*": ["src/app/common/*"], // For everything else inside common
"@/elements": ["src/app/common/elements/index"], // Points directly to the elements index file
"@/elements/*": ["src/app/common/elements/*"], // For everything else inside elements
"@/modals": ["src/app/common/modals/index"], // Points directly to the modals index file
"@/modals/*": ["src/app/common/modals/*"], // For everything else inside modals
"@/assets/*": ["src/app/assets/*"], // For everything else inside assets
"@/plugins/*": ["src/plugins/*"], // For everything else inside plugins
"@/autocomplete": ["src/autocomplete/index"], // Points directly to the autocomplete index file
"@/autocomplete/*": ["src/autocomplete/*"], // For everything else inside autocomplete
}
}
}