2026-05-24 17:16:49 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"strict": true,
|
2026-05-24 18:29:05 +09:00
|
|
|
"allowArbitraryExtensions": true,
|
2026-05-24 17:16:49 +09:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"lib": ["ESNext"],
|
|
|
|
|
"types": ["bun-types"]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*", "test/**/*"]
|
|
|
|
|
}
|