tsconfig.json 730 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "jsxImportSource": "vue",
  8. "moduleResolution": "node",
  9. "experimentalDecorators": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "useDefineForClassFields": true,
  15. "sourceMap": true,
  16. "baseUrl": ".",
  17. "types": ["webpack-env"],
  18. "paths": {
  19. "@/*": ["src/*"]
  20. },
  21. "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  22. },
  23. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
  24. "exclude": ["node_modules"]
  25. }