-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
29 lines (29 loc) · 794 Bytes
/
tsconfig.build.json
File metadata and controls
29 lines (29 loc) · 794 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
{
"compilerOptions": {
"baseUrl": "./",
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"outDir": "dist",
"target": "es6",
"esModuleInterop": true,
"module": "ES2020",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"incremental": true,
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
"lib": ["DOM", "ES2020"],
"skipLibCheck": true,
"types": ["node"],
"noEmit": false
},
"references": [
{ "path": "../analytics/tsconfig.build.json" },
{ "path": "../connect-multichain/tsconfig.build.json" }
],
"include": ["./src"],
"exclude": ["node_modules", "dist", "./tests", "**/*.spec.ts", "**/*.test.ts"]
}