forked from wix/react-native-calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) ยท 1021 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
30
31
32
33
34
35
36
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
// "outDir": "dist",
"esModuleInterop": true,
"moduleResolution": "node",
"jsx": "react-native",
"skipLibCheck": true,
// "resolveJsonModule": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": false,
"checkJs": false,
"allowJs": false,
// "emitDeclarationOnly": true,
"noImplicitAny": false,
"declaration": true,
"baseUrl": ".",
"paths": {
"react-native-calendars": ["src/index.ts"]
}
},
// "include": ["src/calendar/day/basic", "src/global.d.ts"],
"include": [
"src/**/*",
"example/src/screens/calendarScreen.tsx",
"example/src/screens/expandableCalendarScreen.tsx",
"example/src/screens/agendaScreen.tsx",
"example/src/screens/timelineCalendarScreen.tsx",
"example/src/screens/calendarListScreen.tsx",
"example/src/screens/newCalendarListScreen.tsx"
],
"exclude": ["node_modules", "testUtils"]
}