tsconfig.json 521 B

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