tsconfig.json 683 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "sourceMap": true,
  13. "baseUrl": ".",
  14. "types": [
  15. "webpack-env"
  16. ],
  17. "paths": {
  18. "@/*": [
  19. "src/*"
  20. ]
  21. },
  22. "lib": [
  23. "esnext",
  24. "dom",
  25. "dom.iterable",
  26. "scripthost"
  27. ]
  28. },
  29. "include": [
  30. "src/**/*.ts",
  31. "src/**/*.tsx",
  32. "src/**/*.vue",
  33. "tests/**/*.ts",
  34. "tests/**/*.tsx"
  35. ],
  36. "exclude": [
  37. "node_modules"
  38. ]
  39. }