jsconfig.json 775 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "lib": ["es6", "dom"],
  5. "allowSyntheticDefaultImports": true,
  6. "jsx": "preserve",
  7. "moduleResolution": "node",
  8. "allowJs": true,
  9. "noEmit": true,
  10. "strict": false,
  11. "esModuleInterop": true,
  12. "skipLibCheck": true,
  13. "paths": {
  14. "@/*": ["./src/*"],
  15. "@/components/*": ["./src/components/*"],
  16. "@/pages/*": ["./pages/*"],
  17. "@/static/*": ["./static/*"]
  18. },
  19. "types": [
  20. "node"
  21. ],
  22. "typeRoots": [
  23. "./node_modules/@types",
  24. "./types"
  25. ]
  26. },
  27. "vueCompilerOptions": {
  28. "globalTypesPath": "./types/global.d.ts"
  29. },
  30. "include": [
  31. "**/*.js",
  32. "**/*.vue",
  33. "**/*.json"
  34. ],
  35. "exclude": [
  36. "node_modules",
  37. "unpackage",
  38. "dist"
  39. ]
  40. }