-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.packages.json
36 lines (36 loc) · 1.1 KB
/
tsconfig.packages.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
{
"main": "dist/index.js",
"types": "dist/index.d.ts",
"compilerOptions": {
"composite": true,
"target": "esnext",
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"removeComments": true,
"noImplicitAny": true,
"strictNullChecks": true,
"isolatedModules": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
// This doesnt get picked up correctly by configs
// that extend this one. Annoying but it is here anyway
"references": [
{ "path": "./packages/common" },
{ "path": "./packages/trpc" },
{ "path": "./packages/db" },
{ "path": "./packages/auth" },
{ "path": "./packages/discord" }
]
}