-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 667 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 667 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
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"paths": {
"react-native-svg": ["./src"],
"react-native-svg/css": ["./src/css/index.tsx"],
"react-native-svg/filter-image": ["./src/filter-image/index.tsx"]
},
"preserveSymlinks": true,
"target": "es6",
"module": "ESNext",
"jsx": "react-native",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"lib": ["es6", "dom"],
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true
},
"include": ["src"]
}