Files
fressh/packages/react-native-uniffi-russh/tsconfig.json
2025-09-13 02:29:05 -04:00

34 lines
920 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
},
"exclude": ["**/node_modules"]
}