jsconfig.json 314 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "ESNext", // 配合 bundler 使用
  5. "moduleResolution": "bundler", // 使用 bundler 模式
  6. "allowSyntheticDefaultImports": true,
  7. "paths": {
  8. "@/*": ["./src/*"] // 不再需要 baseUrl
  9. }
  10. },
  11. "exclude": ["node_modules", "dist"]
  12. }