21 lines
505 B
JSON
21 lines
505 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "nodenext",
|
|
"moduleDetection": "force",
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"allowJs": true,
|
|
"noImplicitAny": false,
|
|
"outDir": "dist",
|
|
"types": ["node"]
|
|
},
|
|
"include": [".", "../bun-types/index.d.ts"]
|
|
}
|