waveterm/tsconfig.json
Sylvia Crowe 5abff8075b merge branch 'main' into 'ssh--auth-control'
This was mostly straightforward, but it appears that a previous commit
to main broke the user input modals by deleting a function. This adds
that back in addition to the merge.
2024-02-13 16:30:07 -08:00

33 lines
1.5 KiB
JSON

{
"include": ["src/**/*", "types/**/*"],
// "exclude": ["src/electron/emain.ts"],
"compilerOptions": {
"target": "es5",
"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/*": ["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
}
}
}