chore: initial commit

This commit is contained in:
2026-06-19 20:56:05 +02:00
commit f67e22eb38
82 changed files with 3917 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"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
}
}