tsconfig.json 675 B

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