forked from gooddata/gooddata-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 710 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 710 Bytes
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
{
"_note": "This file is only for IDE. For build use tsconfig.[dev/build].json (dev mode is less strict)",
"compilerOptions": {
"declaration": true,
"jsx": "react",
"lib": [
"es7",
"ES2017.Intl",
"ES2018.Intl",
"ESNext.Intl",
"dom"
],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"sourceMap": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"target": "es5"
},
"exclude": [
"node_modules",
"dist",
"examples/node_modules",
"examples/dist",
"**/__mocks__/*"
]
}