forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
35 lines (35 loc) · 892 Bytes
/
tsconfig.build.json
File metadata and controls
35 lines (35 loc) · 892 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"module": "es2022",
"moduleResolution": "bundler",
"target": "ES2020",
"declaration": true,
"sourceMap": true,
"strict": true,
"noEmitOnError": true,
"lib": ["es2022"],
"types": [],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"verbatimModuleSyntax": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// TODO: we should update code to assume errors are of type 'unknown'
"useUnknownInCatchVariables": false
},
"exclude": [
"node_modules",
"**/node_modules/**",
"build",
"**/build/**",
"**/cli-build/**",
"**/*.test.ts",
"**/__tests__/*.ts",
"**/__mocks__/*.ts",
"**/.pnpm/**"
]
}