tsconfig.json 772 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "useDefineForClassFields": true,
  5. "module": "ESNext",
  6. "lib": [
  7. "ES2020",
  8. "DOM",
  9. "DOM.Iterable"
  10. ],
  11. "skipLibCheck": true,
  12. /* Bundler mode */
  13. "moduleResolution": "bundler",
  14. "allowImportingTsExtensions": true,
  15. "resolveJsonModule": true,
  16. "isolatedModules": true,
  17. "noEmit": true,
  18. "jsx": "preserve",
  19. /* Linting */
  20. "strict": false,
  21. "noUnusedLocals": true,
  22. "noUnusedParameters": true,
  23. "noFallthroughCasesInSwitch": true,
  24. "experimentalDecorators": true,
  25. "emitDecoratorMetadata": true
  26. },
  27. "include": [
  28. "src/**/*.ts",
  29. "src/**/*.tsx",
  30. "src/**/*.vue"
  31. ],
  32. "references": [
  33. {
  34. "path": "./tsconfig.node.json"
  35. }
  36. ]
  37. }