Tsconfig
Path:
loom-builder-sol/tsconfig.jsonRelative: tsconfig.jsonSubproject: loom-builder-solCategory: configurationLines: 31Bytes: 764Imports: 0Exports: 0
Content Preview
- {
- "compilerOptions": {
- // Environment setup & latest features
- "lib": ["ESNext"],
- "target": "ESNext",
- "module": "Preserve",
- "moduleDetection": "force",
- "jsx": "react-jsx",
- "allowJs": true,
- // Bundler mode
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "noEmit": true,
- // Best practices
- "strict": true,
- "skipLibCheck": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexed