living-together/tsconfig.json
2022-02-24 15:21:32 +08:00

45 lines
999 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"experimentalDecorators": true,
"resolveJsonModule": true,
"alwaysStrict": true,
"strict": true,
"sourceMap": true,
"jsx": "react-jsx",
"target": "ES5",
"lib": [
"ESNext",
"DOM"
],
"baseUrl": "./",
"paths": {
"@Behavior/*": [
"./source/Behavior/*"
],
"@Group/*": [
"./source/Group/*"
],
"@Model/*": [
"./source/Model/*"
],
"@GLRender/*": [
"./source/GLRender/*"
],
"@Context/*": [
"./source/Context/*"
],
"@Component/*": [
"./source/Component/*"
]
}
},
"include": [
"source/**/*"
],
"exclude": [
"node_modules",
"build",
"config"
]
}