tsconfig.json 778 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "target": "esnext",
  5. "module": "esnext",
  6. "moduleResolution": "node",
  7. "outDir": "dist",
  8. "declaration": true,
  9. "esModuleInterop": true,
  10. "resolveJsonModule": true,
  11. "skipLibCheck": true,
  12. "skipDefaultLibCheck": true,
  13. "strictNullChecks": true,
  14. "strictFunctionTypes": true,
  15. "strictPropertyInitialization": true,
  16. "useUnknownInCatchVariables": false,
  17. "noImplicitThis": true,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "noImplicitReturns": true,
  21. "noFallthroughCasesInSwitch": true,
  22. "allowSyntheticDefaultImports": true,
  23. "experimentalDecorators": true,
  24. "emitDecoratorMetadata": true,
  25. "types": ["node", "vite/client"]
  26. },
  27. "include": ["**/*.ts"]
  28. }