tsconfig.json raw
1 {
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "lib": ["ES2022"],
6 "moduleResolution": "bundler",
7 "declaration": true,
8 "declarationMap": true,
9 "sourceMap": true,
10 "outDir": "./dist",
11 "rootDir": "./src",
12 "strict": true,
13 "esModuleInterop": true,
14 "skipLibCheck": true,
15 "forceConsistentCasingInFileNames": true,
16 "resolveJsonModule": true,
17 "allowSyntheticDefaultImports": true,
18 "types": ["node"]
19 },
20 "include": ["src/**/*"],
21 "exclude": ["node_modules", "dist", "**/*.test.ts"]
22 }
23
24