This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 467
/
tsconfig.json
70 lines (70 loc) · 2.89 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": ["es2017", "dom", "esnext.asynciterable", "es2018.promise"],
"experimentalDecorators": true,
"downlevelIteration": true,
"noImplicitReturns": true,
"pretty": true,
"skipLibCheck": true,
"typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"],
"strict": true,
// These settings are required for TypeScript project references
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
// These are not working right now
"exclude": ["./contracts/extensions/**/*"],
// The root of the project is just a list of references and does not contain
// any top-level TypeScript code.
"include": [],
"references": [
{ "path": "./contracts/asset-proxy" },
{ "path": "./contracts/erc20" },
{ "path": "./contracts/erc721" },
{ "path": "./contracts/exchange" },
{ "path": "./contracts/coordinator" },
{ "path": "./contracts/exchange-forwarder" },
{ "path": "./contracts/exchange-libs" },
// { "path": "./contracts/extensions" },
{ "path": "./contracts/multisig" },
{ "path": "./contracts/test-utils" },
{ "path": "./contracts/utils" },
{ "path": "./contracts/dev-utils" },
{ "path": "./contracts/integrations" },
{ "path": "./packages/0x.js" },
{ "path": "./packages/abi-gen" },
{ "path": "./packages/assert" },
{ "path": "./packages/asset-swapper" },
{ "path": "./packages/base-contract" },
{ "path": "./packages/connect" },
{ "path": "./packages/contract-addresses" },
{ "path": "./packages/contract-artifacts" },
{ "path": "./packages/contract-wrappers" },
{ "path": "./packages/contracts-gen" },
{ "path": "./packages/dev-utils" },
{ "path": "./packages/ethereum-types" },
{ "path": "./packages/json-schemas" },
{ "path": "./packages/migrations" },
{ "path": "./packages/monorepo-scripts" },
{ "path": "./packages/order-utils" },
{ "path": "./packages/sol-compiler" },
{ "path": "./packages/sol-coverage" },
{ "path": "./packages/sol-profiler" },
{ "path": "./packages/sol-trace" },
{ "path": "./packages/sol-tracing-utils" },
{ "path": "./packages/sol-resolver" },
{ "path": "./packages/sra-spec" },
{ "path": "./packages/subproviders" },
{ "path": "./packages/tslint-config" },
{ "path": "./packages/types" },
{ "path": "./packages/typescript-typings" },
{ "path": "./packages/utils" },
{ "path": "./packages/web3-wrapper" }
// Skipping instant because it only produces a UMD bundle
// which it uses webpack to create
// { "path": "./packages/instant" },
]
}