tsconfig.json 657 B

1234567891011121314151617181920212223
  1. {
  2. "include": ["client/src/**/*", "shared/**/*", "server/**/*"],
  3. "exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
  4. "compilerOptions": {
  5. "incremental": true,
  6. "tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
  7. "noEmit": true,
  8. "module": "ESNext",
  9. "strict": true,
  10. "lib": ["esnext", "dom", "dom.iterable"],
  11. "jsx": "preserve",
  12. "esModuleInterop": true,
  13. "skipLibCheck": true,
  14. "allowImportingTsExtensions": true,
  15. "moduleResolution": "bundler",
  16. "baseUrl": ".",
  17. "types": ["node", "vite/client"],
  18. "paths": {
  19. "@/*": ["./client/src/*"],
  20. "@shared/*": ["./shared/*"]
  21. }
  22. }
  23. }