HstarDoc icon indicating copy to clipboard operation
HstarDoc copied to clipboard

webpack支持与VSC智能提示

Open hstarorg opened this issue 8 years ago • 0 comments

通过 jsconfig.json 来实现,核心配置如下:

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": [
        "src/*"
      ]
    },
    "target": "ES6",
    "module": "commonjs",
    "allowSyntheticDefaultImports": true,
    "experimentalDecorators": true
  },
  "include": [
    "src/**/*"
  ],
  "exclude": [
    "node_modules"
  ]
}

hstarorg avatar Dec 11 '17 15:12 hstarorg