19 lines
449 B
JSON
19 lines
449 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ESNext",
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": ["ESNext"],
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"types": ["@types/bun"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"outDir": "./dist"
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|