forked from 0xProject/0x-event-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
22 lines (22 loc) · 825 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"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": "./event-pipeline" }, { "path": "./staking-api" }]
}