1 |
{ |
2 |
"compilerOptions": { |
3 |
"incremental": true, |
4 |
"target": "ES2022", |
5 |
"module": "CommonJS", |
6 |
"rootDir": "src", |
7 |
"types": ["node", "bun"], |
8 |
"lib": ["ES2022", "DOM"], |
9 |
"resolveJsonModule": true, |
10 |
"declaration": true, |
11 |
"noEmit": true, |
12 |
"newLine": "lf", |
13 |
"noEmitOnError": true, |
14 |
"allowSyntheticDefaultImports": true, |
15 |
"esModuleInterop": true, |
16 |
"forceConsistentCasingInFileNames": true, |
17 |
"strict": true, |
18 |
"skipLibCheck": true, |
19 |
"skipDefaultLibCheck": true, |
20 |
"emitDecoratorMetadata": true, |
21 |
"experimentalDecorators": true, |
22 |
"noImplicitOverride": true, |
23 |
"importsNotUsedAsValues": "remove" |
24 |
} |
25 |
} |