tsconfig.json 706 B

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