welfare-admin/jsconfig.json

18 lines
217 B
JSON
Raw Permalink Normal View History

2021-08-11 15:44:50 +08:00
{
"compilerOptions": {
"target": "es6",
"baseUrl": ".",
"paths": {
2021-08-13 00:43:28 +08:00
"@/*": [
"src/*"
]
2021-08-11 15:44:50 +08:00
}
},
2021-08-13 00:43:28 +08:00
"exclude": [
"node_modules",
"dist"
],
"include": [
"src/**/*"
]
}