tsconfig.json 531 B

1234567891011121314151617181920212223
  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. "Source/**/*.ts"
  22. ]
  23. }