scroll/tsconfig.json
Timothy J. Warren b5856f063a
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Add string highlighting
2024-07-16 15:57:41 -04:00

24 lines
548 B
JSON

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