tsconfig.json 812 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "compilerOptions": {
  3. "target": "ES2016",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "moduleResolution": "node",
  8. "experimentalDecorators": true,
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "useDefineForClassFields": true,
  15. "sourceMap": true,
  16. "baseUrl": ".",
  17. "types": [
  18. "webpack-env",
  19. "jest"
  20. ],
  21. "paths": {
  22. "@/*": [
  23. "src/*"
  24. ]
  25. },
  26. "lib": [
  27. "esnext",
  28. "dom",
  29. "dom.iterable",
  30. "scripthost"
  31. ]
  32. },
  33. "include": [
  34. "src/**/*.ts",
  35. "src/**/*.tsx",
  36. "src/**/*.vue",
  37. "tests/**/*.ts",
  38. "tests/**/*.tsx"
  39. ],
  40. "exclude": [
  41. "node_modules",
  42. "dist"
  43. ]
  44. }