forked from theappbusiness/covid-tracker-react-native
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
34 lines (34 loc) · 985 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": ".",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"paths": {
"@assets": ["./assets"],
"@assets/*": ["./assets/*"],
"@covid": ["./src"],
"@covid/*": ["./src/*"],
"@health-study": ["./health-study"],
"@health-study/*": ["./health-study/*"],
"@theme": ["./theme"],
"@theme/*": ["./theme/*"],
"@tracer": ["./storybook"],
"@tracer/*": ["./storybook/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"target": "esnext"
},
"exclude": ["babel.config.js", "jest.config.js", "metro.config.js", "node_modules/"]
}