forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.build.regular.json
More file actions
37 lines (37 loc) · 909 Bytes
/
tsconfig.build.regular.json
File metadata and controls
37 lines (37 loc) · 909 Bytes
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": {
"target": "ES2021",
"module": "commonjs",
"lib": ["ES2021"],
"esModuleInterop": true,
"isolatedModules": true,
"sourceMap": true,
"declaration": true,
"strict": true,
"noImplicitAny": false,
"noUncheckedIndexedAccess": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"emitDeclarationOnly": true,
"resolveJsonModule": true
},
"exclude": [
"**/tests",
"**/__tests__",
"./sandbox",
"./eslint-local-rules",
"**/dist",
"**/build",
"**/fixtures",
"**/node_modules",
"**/.prisma/client",
"./packages/cli/preinstall",
"./packages/cli/prisma-client",
"./packages/client/runtime",
"./packages/client/declaration",
"./packages/client/generator-build"
]
}