-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
37 lines (37 loc) · 1.14 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
{
"compilerOptions": {
"allowJs": false,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"lib": ["ES2021.String", "DOM"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "public",
"strict": true,
"strictNullChecks": true,
"target": "ES2015"
},
"include": [
"index.d.ts",
"src/app.tsx",
"src/**/*.ts",
"test/__tests__/analytics.spec.ts",
"test/__tests__/calculate-distances.spec.ts",
"test/__tests__/format-address.spec.ts",
"test/__tests__/format-array.spec.ts",
"test/__tests__/format-conference-provider.spec.ts",
"test/__tests__/format-directions-url.spec.ts",
"test/__tests__/format-feedback-email.spec.ts",
"test/__tests__/format-ics.spec.ts",
"test/__tests__/format-slug.spec.ts",
"test/__tests__/format-string.spec.ts",
"test/__tests__/format-url.spec.ts",
"test/__tests__/load-meeting-data.spec.ts",
"test/__tests__/query-string.spec.ts",
"test/__tests__/settings.spec.ts",
"test/__tests__/translate-google-sheet.spec.ts",
"test/__tests__/user-agent.spec.ts"
]
}