-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
42 lines (42 loc) · 939 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"moduleResolution": "node",
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"strict": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"jsx": "react",
"target": "es5",
"module": "commonjs",
"lib": [
"dom",
"dom.iterable",
"es2015",
"es2015.iterable"
],
"declarationDir": "dist/types",
"typeRoots": [
"node_modules/@types",
"types"
]
},
"include": [
"vynos",
"node_modules/**/index.d.ts",
"node_modules/web3-typescript-typings/index.d.ts",
"node_modules/@machinomy/types-truffle-contract/index.d.ts"
],
"exclude": [
"node_modules/homedir/index.d.ts",
"node_modules/@types/jasmine/index.d.ts"
],
"typeRoots": [
"node_modules/@types",
"types"
]
}