Files
react-navigation/packages/animated-switch/tsconfig.json
Satyajit Sahoo 3e5085ee46 feat: upgrade project and add example
BREAKING CHANGE: Migrate to React Navigation 4.x
2019-12-12 15:55:00 +01:00

34 lines
843 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"react-navigation-animated-switch": ["./src/index"]
},
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext"
},
"typeAcquisition": {
"enable": true,
"include": ["react", "react-native"]
}
}