tsconfig.base.json 357 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "es2024",
  4. "module": "esnext",
  5. "moduleResolution": "bundler",
  6. "declaration": true,
  7. "emitDeclarationOnly": true,
  8. "composite": true,
  9. "incremental": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowImportingTsExtensions": true,
  13. "strict": true,
  14. "types": ["node"]
  15. }
  16. }