HstarDoc
HstarDoc copied to clipboard
webpack支持与VSC智能提示
通过 jsconfig.json 来实现,核心配置如下:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"target": "ES6",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}