tsconfig.json 515 B

123456789101112131415161718192021
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "compilerOptions": {
  4. "target": "esnext",
  5. "module": "esnext",
  6. "sourceMap": true,
  7. "baseUrl": "./",
  8. "skipLibCheck": true,
  9. "preserveValueImports": false,
  10. "isolatedModules": true,
  11. "paths": {
  12. "@/*": [
  13. "src/*",
  14. ]
  15. },
  16. "lib": ["esnext", "dom"],
  17. "types": ["@dcloudio/types"],
  18. },
  19. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  20. "references": [{ "path": "./tsconfig.node.json"}]
  21. }