-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathtsconfig.json
45 lines (45 loc) · 1.55 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
{
"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
},
// The root of the project is just a list of references and does not contain
// any top-level TypeScript code.
"include": [],
"references": [
{ "path": "./abi-gen" },
{ "path": "./assert" },
{ "path": "./base-contract" },
{ "path": "./contracts-gen" },
{ "path": "./dev-utils" },
{ "path": "./ethereum-types" },
{ "path": "./json-schemas" },
{ "path": "./monorepo-scripts" },
{ "path": "./sol-compiler" },
{ "path": "./sol-coverage" },
{ "path": "./sol-doc" },
{ "path": "./sol-profiler" },
{ "path": "./sol-resolver" },
{ "path": "./sol-trace" },
{ "path": "./sol-tracing-utils" },
{ "path": "./sol-resolver" },
{ "path": "./subproviders" },
{ "path": "./tslint-config" },
{ "path": "./types" },
{ "path": "./typescript-typings" },
{ "path": "./utils" },
{ "path": "./web3-wrapper" }
]
}