forked from indico/indico
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 1.37 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
27
28
29
30
31
32
33
{
"compilerOptions": {
"target": "ESNext",
"allowJs": true,
"noEmit": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"isolatedModules": true,
"moduleResolution": "Node",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"jsx": "react",
"baseUrl": ".",
"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/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/*"],
"*": ["./node_modules/*"]
},
"typeRoots": ["./node_modules/@types"]
},
"include": ["indico/**/client/**/*", "indico/web/client/js/types", "indico/global.d.ts"]
}