tsconfig.json 936 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "ignoreDeprecations": "5.0",
  16. "target": "esnext",
  17. "module": "es2022",
  18. "strict": false,
  19. "jsx": "preserve",
  20. "moduleResolution": "Node",
  21. "baseUrl": "./",
  22. "paths": {
  23. "@/*": [
  24. "./src/*"
  25. ],
  26. },
  27. "isolatedModules": false,
  28. "sourceMap": true,
  29. "resolveJsonModule": true,
  30. "esModuleInterop": true,
  31. "lib": [
  32. "es5",
  33. "es6",
  34. "dom",
  35. "dom.iterable"
  36. ],
  37. "allowSyntheticDefaultImports": true
  38. },
  39. "references": [
  40. {
  41. "path": "./tsconfig.node.json"
  42. }
  43. ]
  44. }