jsconfig.json 697 B

1234567891011121314151617181920212223242526272829303132333435
  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. "paths": {
  12. "@/*": ["./src/*"],
  13. "@/components/*": ["./src/components/*"],
  14. "@/pages/*": ["./pages/*"],
  15. "@/static/*": ["./static/*"]
  16. },
  17. "types": [
  18. "node"
  19. ]
  20. },
  21. "vueCompilerOptions": {
  22. "experimentalRuntimeMode": "runtime-uni-app",
  23. "globalTypesPath": "./types/global.d.ts"
  24. },
  25. "include": [
  26. "**/*.js",
  27. "**/*.vue",
  28. "**/*.json"
  29. ],
  30. "exclude": [
  31. "node_modules",
  32. "unpackage",
  33. "dist"
  34. ]
  35. }