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,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"composite": true,
|
|
|
|
"downlevelIteration": true,
|
2024-07-11 17:27:49 -04:00
|
|
|
"esModuleInterop": false,
|
|
|
|
"allowSyntheticDefaultImports": false
|
2023-11-08 15:53:14 -05:00
|
|
|
},
|
|
|
|
"exclude": ["src/deno"]
|
|
|
|
}
|