| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "compilerOptions": {
- "rootDir": ".",
- "paths": {
- "ncore-ui-kit-mobile": [
- "./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
- },
- "exclude": [
- "version.mjs"
- ]
- }
|