forked from superdesk/superdesk-planning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
29 lines (29 loc) · 796 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
{
"files": [
"index.ts"
],
"include": [
"client"
],
"compilerOptions": {
"baseUrl": "client",
"skipLibCheck": true,
"sourceMap": true,
"allowJs": true,
"esModuleInterop": true,
"module": "commonjs",
"target": "es5",
"lib": [
"dom",
"es2017",
"es2018.promise"
],
"jsx": "react",
"paths": {
"core/*": ["../node_modules/superdesk-core/scripts/core/*"],
"apps/*": ["../node_modules/superdesk-core/scripts/apps/*"],
"superdesk-interfaces/*": ["../node_modules/superdesk-core/scripts/superdesk-interfaces/*"],
"appConfig": ["../node_modules/superdesk-core/scripts/appConfig"]
}
}
}