-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
31 lines (28 loc) · 876 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
{
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build",
"sourceMap": true,
"allowJs": true,
"target": "ES2020",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"noImplicitAny": true,
"strictNullChecks": true,
//Project Module Settings
"module": "Node16",
"moduleResolution": "Node16",
// "resolveJsonModule": true,
//"esModuleInterop": true,
//Suppresses discord.js bs errors in definitions despite strict null checks being enabled
//might remove later if this problem is fixed
//"skipLibCheck": true,
"typeRoots": ["./typings", "./node_modules/@types"]
},
"exclude": [
"./prisma/**/*",
"./build/**/*",
"./eslint.config.js"
]
}