tsconfig.json 935 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. // "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "../common/src/stores/user", "../common/src/stores/user"],
  3. "include": [
  4. "src/**/*.ts",
  5. "src/**/*.d.ts",
  6. "src/**/*.tsx",
  7. "src/**/*.vue",
  8. "src/untils/baiduMap.js",
  9. "src/untils/debuonce.js",
  10. "**/*.ts",
  11. "**/*.tsx"
  12. ],
  13. "compilerOptions": {
  14. "ignoreDeprecations": "5.0",
  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. "sourceMap": true,
  31. "resolveJsonModule": true,
  32. "esModuleInterop": true,
  33. "lib": [
  34. "es5",
  35. "es6",
  36. "dom",
  37. "dom.iterable"
  38. ],
  39. "allowSyntheticDefaultImports": true
  40. },
  41. "references": [
  42. {
  43. "path": "./tsconfig.node.json"
  44. }
  45. ]
  46. }