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 |
"outDir": "./build", |
12 |
"importHelpers": true, |
13 |
"newLine": "lf", |
14 |
"noEmitHelpers": true, |
15 |
"noEmitOnError": true, |
16 |
"allowSyntheticDefaultImports": true, |
17 |
"esModuleInterop": true, |
18 |
"forceConsistentCasingInFileNames": true, |
19 |
"strict": true, |
20 |
"skipLibCheck": true |
21 |
}, |
22 |
"include": ["./src/types/globals.d.ts", "src/**/*.ts"], |
23 |
"exclude": ["./backup", "./tmp", "./tmp/**", "./scripts", "./tests", "./build", "./extensions", "./docs", "./docs/**"] |
24 |
} |