20 lines
418 B
JSON
20 lines
418 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"noUncheckedIndexedAccess": true,
|
|
"noEmit": true,
|
|
"types": [
|
|
"bun-types" // add Bun global
|
|
]
|
|
}
|
|
} |