tsconfig.json 889 B

12345678910111213141516171819202122232425262728293031323334353637
  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": "ESNext",
  18. "strict": false,
  19. "jsx": "preserve",
  20. "moduleResolution": "Node",
  21. "baseUrl": "./",
  22. "paths": {
  23. "@/*": ["./src/*"]
  24. },
  25. "isolatedModules": false,
  26. "sourceMap": true,
  27. "resolveJsonModule": true,
  28. "esModuleInterop": true,
  29. "lib": ["es5", "es6", "dom", "dom.iterable"],
  30. "allowSyntheticDefaultImports": true
  31. },
  32. "references": [
  33. {
  34. "path": "./tsconfig.node.json"
  35. }
  36. ]
  37. }