-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 995 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
29
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"allowJs": false,
"lib": ["ES2022"],
"module": "CommonJS",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"target": "ES2022",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"pretty": true,
"strict": true,
"outDir": "./lib",
"skipLibCheck": true,
"noImplicitAny": false,
"esModuleInterop": true,
"declaration": true,
"resolveJsonModule": true,
"baseUrl": "./",
"paths": {
"_comment": [
"⚠️ Keep this in sync with jest.config.ts and package.json. ⚠️ "
],
"@/*": ["src/*"],
"@api/*": ["src/api/*"],
"@test/*": ["test/*"],
"@types": ["src/types"],
"@utils/*": ["src/utils/*"],
"@webhooks": ["src/webhooks"],
"@webhooks/*": ["src/webhooks/*"]
}
},
"include": ["src/**/*", "test", "migrations/*.ts"],
"exclude": ["**/__mocks__/**"],
"compileOnSave": false
}