Files
CompanyProject/moehu/moehu_admin/tsconfig.json
2024-09-27 01:32:49 +08:00

106 lines
2.0 KiB
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
],
"@core/*": [
"src/core/*"
],
"@router/*": [
"src/core/router/*"
],
"@store/*": [
"src/core/store/*"
],
"@types/*": [
"src/core/types/*"
],
"@config/*": [
"src/core/config/*"
],
"@utils/*": [
"src/core/utils/*"
],
"@run/*": [
"src/core/run/*"
],
"@ann/*": [
"src/core/annotation/*"
],
"@model/*": [
"src/core/model/*"
],
"@dao/*": [
"src/core/dao/*"
],
"@entity/*": [
"src/core/entity/*"
],
"@service/*": [
"src/core/service/*"
],
"@impl/*": [
"src/core/service/impl/*"
],
"@application/*": [
"src/application/*"
],
"@img/*": [
"src/application/assets/img/*"
],
"@less/*": [
"src/application/assets/less/*"
],
"@pageLess/*": [
"src/application/assets/less/page/*"
],
"@componentsLess/*": [
"src/application/assets/less/components/*"
],
"@components/*": [
"src/application/components/*"
],
"@page/*": [
"src/application/page/*"
],
"@logic/*": [
"src/application/logic/*"
],
"@layout/*": [
"src/application/layout/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"./**/*.ts"
],
"exclude": [
"node_modules"
]
}