2023-11-08 15:53:14 -05:00
|
|
|
{
|
|
|
|
"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,
|
2023-11-08 15:53:14 -05:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"composite": true,
|
|
|
|
"downlevelIteration": true,
|
2024-07-12 15:33:03 -04:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-07-16 15:57:41 -04:00
|
|
|
"isolatedModules": true,
|
|
|
|
"strictNullChecks": true
|
2023-11-08 15:53:14 -05:00
|
|
|
},
|
|
|
|
"exclude": ["src/deno"]
|
|
|
|
}
|