-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsconfig.json
More file actions
26 lines (26 loc) · 1.2 KB
/
jsconfig.json
File metadata and controls
26 lines (26 loc) · 1.2 KB
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
{
"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/papers/*": ["./indico/modules/events/papers/client/js/*"],
"indico/modules/events/management/*": ["./indico/modules/events/management/client/js/*"],
"indico/modules/events/persons/*": ["./indico/modules/events/persons/client/js/*"],
"indico/modules/events/*": ["./indico/modules/events/client/js/*"],
"indico/*": ["./indico/web/client/js/*"],
"axios/unsafe/*": ["./node_modules/axios/lib/*"]
}
},
"exclude": ["node_modules", "indico/web/static/dist", "indico/htdocs"],
"include": ["indico/**/js"]
}