-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 848 Bytes
/
Copy pathtsconfig.json
File metadata and controls
42 lines (42 loc) · 848 Bytes
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
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"target": "ES2022",
"lib": [
"DOM",
"DOM.Iterable",
"ES2022"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-jsx",
"noEmit": true,
"noErrorTruncation": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"types": [
"node",
"react",
"react-native"
],
"baseUrl": ".",
"paths": {
"@chart-kit/pro/react-native": [
"src/previewChartKitReactNative.tsx"
]
}
},
"include": [
"App.tsx",
"src/**/*",
"visual/**/*",
"benchmarks/**/*",
"benchmark.config.ts",
"playwright.config.ts",
"vitest.config.ts"
]
}