forked from fullcalendar/fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (49 loc) · 1.91 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"target": "es5",
"module": "es6",
"moduleResolution": "node",
"lib": [
"dom",
"es2015",
"scripthost"
],
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noImplicitUseStrict": true,
"importHelpers": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"baseUrl": ".",
"paths": {
"@fullcalendar/core": [ "packages/core/src/main" ],
"@fullcalendar/core/*": [ "packages/core/src/*" ],
"@fullcalendar/interaction": [ "packages/interaction/src/main" ],
"@fullcalendar/daygrid": [ "packages/daygrid/src/main" ],
"@fullcalendar/timegrid": [ "packages/timegrid/src/main" ],
"@fullcalendar/list": [ "packages/list/src/main" ],
"@fullcalendar/rrule": [ "packages/rrule/src/main" ],
"@fullcalendar/luxon": [ "packages/luxon/src/main" ],
"@fullcalendar/moment": [ "packages/moment/src/main" ],
"@fullcalendar/moment-timezone": [ "packages/moment-timezone/src/main" ],
"@fullcalendar/google-calendar": [ "packages/google-calendar/src/main" ],
"@fullcalendar/bootstrap": [ "packages/bootstrap/src/main" ],
"@fullcalendar/timeline": [ "packages-premium/timeline/src/main" ],
"@fullcalendar/resource-common": [ "packages-premium/resource-common/src/main" ],
"@fullcalendar/resource-timeline": [ "packages-premium/resource-timeline/src/main" ],
"@fullcalendar/resource-daygrid": [ "packages-premium/resource-daygrid/src/main" ],
"@fullcalendar/resource-timegrid": [ "packages-premium/resource-timegrid/src/main" ],
"package-tests/*": [ "packages/__tests__/src/*" ]
},
"rootDir": ".",
"outDir": "tmp/tsc-output"
},
"include": [
"packages/*/src/main.ts",
"packages/core/src/locales/*.js",
"packages/__tests__/src/**/*.js",
"packages-premium/*/src/main.ts",
"packages-premium/__tests__/src/**/*.js"
]
}