18 lines
376 B
JSON
18 lines
376 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"outDir": "../dist",
|
||
|
|
"rootDir": ".",
|
||
|
|
"types": ["bun-types"]
|
||
|
|
},
|
||
|
|
"include": ["*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|