tsconfig.json 741 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": false,
  6. "jsx": "preserve",
  7. "jsxFactory": "VueTsxSupport",
  8. "importHelpers": true,
  9. "noImplicitAny": false,
  10. "moduleResolution": "node",
  11. "experimentalDecorators": true,
  12. "skipLibCheck": true,
  13. "esModuleInterop": true,
  14. "allowSyntheticDefaultImports": true,
  15. "sourceMap": true,
  16. "baseUrl": ".",
  17. "typeRoots": ["./typings", "./node_modules/@types"],
  18. "resolveJsonModule": true,
  19. "paths": {
  20. "@/*": ["src/*"]
  21. },
  22. "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  23. },
  24. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
  25. "exclude": ["node_modules"]
  26. }