Files
electronTs-ks-demo/tsconfig.json
2024-09-27 01:23:51 +08:00

49 lines
1.2 KiB
JSON
Executable File

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"rootDir": "src",
"outDir": "dist/",
"paths": {
"@/*": ["src/*"],
"@type/*": ["src/core/types/*"],
"@run/*": ["src/core/run/*"],
"@config/*": ["src/core/config/*"],
"@controller/*": ["src/core/controller/*"],
"@utils/*": ["src/core/utils/*"],
"@net/*": ["src/core/net/*"],
"@model/*": ["src/core/model/*"],
"@ipc/*": ["src/core/ipc/*"],
"@service/*": ["src/core/service/*"],
"@interactive/*": ["src/core/interactive/*"],
"@img/*": ["src/application/assets/img/*"],
"@annotation/*": ["src/core/annotation/*"]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}