scroll/tsconfig.json

21 lines
470 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,
"skipLibCheck": true,
"composite": true,
"downlevelIteration": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": false
},
"exclude": ["src/deno"]
}