Files
fressh/packages/react-native-uniffi-russh/tsconfig.json
EthanShoeDev bbc1b8a9a0 one error down
2025-09-13 02:52:24 -04:00

33 lines
886 B
JSON

{
"compilerOptions": {
"rootDir": ".",
"paths": {
"react-native-uniffi-russh": ["./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,
"noUnusedLocals": false,
"noUnusedParameters": false
}
}