tsconfig.json 821 B

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