tsconfig.json 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.web.json",
  3. // "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "../common/src/stores/user", "../common/src/stores/user"],
  4. "include": [
  5. "src/**/*.ts",
  6. "src/**/*.d.ts",
  7. "src/**/*.tsx",
  8. "src/**/*.vue",
  9. "src/untils/baiduMap.js",
  10. "src/untils/debuonce.js",
  11. "**/*.ts",
  12. "**/*.tsx"
  13. ],
  14. "compilerOptions": {
  15. "target": "esnext",
  16. "module": "esnext",
  17. "strict": false,
  18. "jsx": "preserve",
  19. "moduleResolution": "node",
  20. "baseUrl": ".",
  21. "paths": {
  22. "@/*": [
  23. "./src/*"
  24. ],
  25. "@common/*": [
  26. "../common/*"
  27. ]
  28. },
  29. "isolatedModules": false,
  30. "suppressImplicitAnyIndexErrors": true,
  31. "sourceMap": true,
  32. "resolveJsonModule": true,
  33. "esModuleInterop": true,
  34. "lib": [
  35. "es5",
  36. "es6",
  37. "dom",
  38. "dom.iterable"
  39. ],
  40. "allowSyntheticDefaultImports": true
  41. },
  42. "references": [
  43. {
  44. "path": "./tsconfig.node.json"
  45. }
  46. ]
  47. }