tsconfig.json 509 B

12345678910111213141516171819202122
  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. "include": [
  19. "./Source/**/*.js",
  20. "./Build/**/*.ts"
  21. ]
  22. }