2026-05-29 12:41:23 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
2026-05-29 13:01:15 +09:00
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"noEmit": true,
|
2026-05-29 12:41:23 +09:00
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"lib": ["ESNext"],
|
|
|
|
|
"types": ["bun-types"]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
|
}
|