-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
35 lines (34 loc) · 959 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
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "ESNext",
"target": "es2022",
"strict": true,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"allowJs": true,
"checkJs": true,
"outDir": "dist",
"resolveJsonModule": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@db": ["./src/db"],
"@fetchers/*": ["./src/fetchers/*"],
"@fetchers": ["./src/fetchers"],
"@routes/*": ["./src/routes/*"],
"@db/*": ["./src/db/*"],
"~/*": ["./src/*"],
"~prisma": ["./prisma/generated/stacks-api-schema"]
}
},
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["**/*.ts", "**/*.tsx", ".eslintrc.js"],
"exclude": ["node_modules"]
}