Tsconfig
Path:
pi-cybernetic/tsconfig.jsonRelative: tsconfig.jsonSubproject: pi-cyberneticCategory: configurationLines: 20Bytes: 501Imports: 0Exports: 0
Content Preview
- {
- "compilerOptions": {
- "target": "ES2023",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "lib": ["ES2023"],
- "types": ["bun-types"],
- "strict": true,
- "noImplicitAny": true,
- "noUncheckedIndexedAccess": true,
- "noFallthroughCasesInSwitch": true,
- "forceConsistentCasingInFileNames": true,
- "skipLibCheck": true,
- "allowImportingTsExtensions": true,
- "noEmit": true,
- "verbatimModuleSyntax": true
- },
- "include": ["src/**/*.ts", "test/**/*.ts"]
- }