Files
react-native-jecnaapi/tsconfig.json
T
2026-06-19 20:56:05 +02:00

32 lines
794 B
JSON

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