scroll/tsconfig.json
Timothy J. Warren 2c21bf0c9b
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Use node apis for test setup, refactor a bunch of runtime stuff
2024-07-11 17:27:49 -04:00

21 lines
470 B
JSON

{
"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"]
}