forked from gooddata/gooddata-ui-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 956 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
{
"_note": "This file is only for IDE. For build use tsconfig.[dev/build].json (dev mode is less strict)",
"compilerOptions": {
"target": "es2017",
"jsx": "react",
"lib": ["es2017", "dom"],
"module": "NodeNext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"importHelpers": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./esm",
"sourceMap": true,
"baseUrl": "..",
"paths": {
"@gooddata/sdk-ui": ["sdk-ui/src"],
"@gooddata/sdk-model": ["sdk-model/src"],
"@gooddata/sdk-backend-spi": ["sdk-backend-spi/src"],
"@gooddata/sdk-backend-mockingbird": ["sdk-backend-mockingbird/src"],
"@gooddata/util": ["util/src"]
}
},
"compileOnSave": false,
"exclude": ["**/node_modules", "esm", "**/__mocks__/**/*"]
}