18 lines
420 B
JSON
18 lines
420 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"allowJs": false,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"types": ["bun"],
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts", "scripts/**/*.ts", "tests/**/*.ts"]
|
|
}
|