-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 942 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"ts-node": {
"transpileOnly": true
},
"compilerOptions": {
"outDir": "./dist",
"target": "ES2017",
"module": "commonjs",
"lib": ["es2017", "dom", "esnext.asynciterable"],
"typeRoots": ["./node_modules/@types", "./src/types", "./src/generated"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitThis": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"sourceMap": true, // Enable source maps for better error tracking
"types": ["jest", "node"], // Add 'node' types for compatibility
},
"include": ["./src/**/*", "./src/generated/**/*"], // Ensure generated files are included
"exclude": ["node_modules", "dist"]
}