forked from 0xProject/0x-mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 1.06 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": ["es2017", "dom"],
"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
"composite": true,
"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": "./packages/browser" },
{ "path": "./packages/browser-lite" },
{ "path": "./packages/webpack-example" },
{ "path": "./packages/webpack-example-lite" },
{ "path": "./packages/rpc-client" },
{ "path": "./packages/integration-tests" },
{ "path": "./packages/test-wasm" }
]
}