前端转vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "include": [
  3. "src/**/*.ts",
  4. "src/**/*.d.ts",
  5. "src/**/*.tsx",
  6. "src/**/*.vue",
  7. "types/**/*.d.ts",
  8. "types/**/*.ts",
  9. ],
  10. "exclude": [
  11. "node_modules",
  12. "dist"
  13. ],
  14. "compilerOptions": {
  15. "noEmit": true,
  16. "jsx": "preserve",
  17. "target": "esnext",
  18. "module": "esnext",
  19. "sourceMap": true,
  20. "outDir": "./dist",
  21. "lib": [
  22. "esnext",
  23. "dom"
  24. ],
  25. "resolveJsonModule": true,
  26. "types": [
  27. "vite/client",
  28. "node"
  29. ],
  30. "strict": false,
  31. "isolatedModules": false,
  32. "noUnusedLocals": false,
  33. "noImplicitReturns": true,
  34. "moduleResolution": "node",
  35. "esModuleInterop": true,
  36. "noImplicitAny": false,
  37. "plugins": [
  38. {
  39. "name": "@vuedx/typescript-plugin-vue"
  40. }
  41. ],
  42. // "composite": true,
  43. "baseUrl": ".",
  44. "typeRoots": [
  45. "./node_modules/@types/",
  46. "./types"
  47. ],
  48. "paths": {
  49. "@/*": [
  50. "src/*"
  51. ],
  52. "#/*": [
  53. "types/*"
  54. ]
  55. }
  56. },
  57. // "files": [],
  58. // "references": [
  59. // {
  60. // "path": "./tsconfig.node.json"
  61. // },
  62. // {
  63. // "path": "./tsconfig.app.json"
  64. // },
  65. // {
  66. // "path": "./tsconfig.vitest.json"
  67. // }
  68. // ]
  69. }