living-together/tsconfig.json
2022-02-06 11:50:29 +08:00

40 lines
838 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"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/*"
],
"@Common/*": [
"./source/Common/*"
],
"@GLRender/*": [
"./source/GLRender/*"
]
}
},
"include": [
"source/**/*"
],
"exclude": [
"node_modules",
"build",
"config"
]
}