Files
margelo--react-native-graph/tsconfig.json
Ritesh Shukla 5f5af559f9 feat: React-native-graphs reboot (#124)
* upgrade-everything

* remove tests
2026-04-15 20:18:45 +05:30

31 lines
811 B
JSON

{
"compilerOptions": {
"rootDir": ".",
"paths": {
"react-native-graph": ["./src/index"]
},
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"customConditions": ["react-native-strict-api"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"lib": ["ESNext"],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext",
"verbatimModuleSyntax": true
}
}