tsconfig.json 443 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "target": "esnext",
  5. "moduleDetection": "force",
  6. "module": "esnext",
  7. "moduleResolution": "bundler",
  8. "types": ["bun-types"],
  9. "allowImportingTsExtensions": true,
  10. "allowJs": true,
  11. "noEmit": true,
  12. "downlevelIteration": true,
  13. "allowSyntheticDefaultImports": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "strict": true,
  16. "skipLibCheck": true
  17. }
  18. }