forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.prod.json
More file actions
25 lines (25 loc) · 827 Bytes
/
tsconfig.prod.json
File metadata and controls
25 lines (25 loc) · 827 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
{
"compilerOptions": {
"declaration": true,
"lib": ["ES2018"],
"module": "CommonJS",
"moduleResolution": "node",
"strict": true,
"target": "ES2018",
"sourceMap": true,
"composite": true,
"incremental": true,
"stripInternal": true
},
"files": [],
"references": [
{ "path": "./packages/typechain/tsconfig.build.json" },
{ "path": "./packages/test-utils/tsconfig.build.json" },
{ "path": "./packages/target-web3-v1/tsconfig.build.json" },
{ "path": "./packages/target-truffle-v5/tsconfig.build.json" },
{ "path": "./packages/target-ethers-v5/tsconfig.build.json" },
{ "path": "./packages/target-ethers-v6/tsconfig.build.json" },
{ "path": "./packages/hardhat/tsconfig.build.json" },
{ "path": "./packages/target-starknet/tsconfig.build.json" }
]
}