forked from indico/indico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsconfig.json
29 lines (29 loc) · 1018 Bytes
/
jsconfig.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
{
"compilerOptions": {
"target": "esnext",
"baseUrl": ".",
"jsx": "react",
"checkJs": false,
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"paths": {
"indico/modules/core/*": ["./indico/modules/core/client/js/*"],
"indico/modules/rb/*": ["./indico/modules/rb/client/js/*"],
"indico/modules/users/*": ["./indico/modules/users/client/js/*"],
"indico/modules/search/*": ["./indico/modules/search/client/js/*"],
"indico/modules/events/reviewing/*": ["./indico/modules/events/client/js/reviewing/*"],
"indico/modules/events/editing/*": ["./indico/modules/events/editing/client/js/*"],
"indico/modules/events/management/*": ["./indico/modules/events/management/client/js/*"],
"indico/modules/events/*": ["./indico/modules/events/client/js/*"],
"indico/*": ["./indico/web/client/js/*"]
}
},
"exclude": [
"node_modules",
"indico/web/static/dist",
"indico/htdocs"
],
"include": [
"indico/**/js"
]
}