scroll/tsconfig.json

24 lines
548 B
JSON
Raw Normal View History

{
"compilerOptions": {
"allowImportingTsExtensions": true,
"module": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"target": "esnext",
"types": ["bun-types"],
"lib": ["ESNext"],
"noEmit": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2024-07-16 15:57:41 -04:00
"noImplicitAny": true,
"skipLibCheck": true,
"composite": true,
"downlevelIteration": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2024-07-16 15:57:41 -04:00
"isolatedModules": true,
"strictNullChecks": true
},
"exclude": ["src/deno"]
}