living-together/tsconfig.json
2022-01-12 08:59:52 +08:00

33 lines
654 B
JSON

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