-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 964 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
{
"compilerOptions": {
"baseUrl": "./",
"allowSyntheticDefaultImports": true,
"types": ["node"],
"typeRoots": ["./node_modules/@types"],
"removeComments": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-native",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"resolveJsonModule": true,
"allowJs": true,
"paths": {
"@infinite-list/group": ["ui/group/src/index.ts"],
"@infinite-list/list": ["ui/list/src/index.ts"],
"@infinite-list/masonry": ["ui/masonry/src/index.ts"],
"@infinite-list/scroller/react-native": ["ui/scroller/src/react-native"],
"@infinite-list/scroller/web": ["ui/scroller/src/web"]
}
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}