Tsconfig

pi-cyberneticconfigjson
Path: pi-cybernetic/tsconfig.jsonRelative: tsconfig.jsonSubproject: pi-cyberneticCategory: configuration
Lines: 20Bytes: 501Imports: 0Exports: 0

Content Preview

  1. {
  2. "compilerOptions": {
  3. "target": "ES2023",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "lib": ["ES2023"],
  7. "types": ["bun-types"],
  8. "strict": true,
  9. "noImplicitAny": true,
  10. "noUncheckedIndexedAccess": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "skipLibCheck": true,
  14. "allowImportingTsExtensions": true,
  15. "noEmit": true,
  16. "verbatimModuleSyntax": true
  17. },
  18. "include": ["src/**/*.ts", "test/**/*.ts"]
  19. }