| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "compilerOptions": {
- "rootDir": ".",
- "paths": {
- "ncore-ui-kit": [
- "./src/index"
- ]
- },
- "types": [
- "node"
- ],
- "allowUnreachableCode": false,
- "allowUnusedLabels": false,
- "composite": true,
- "declaration": true,
- "customConditions": [
- "react-native-strict-api"
- ],
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "jsx": "react-jsx",
- "lib": [
- "ESNext"
- ],
- "module": "ESNext",
- "moduleResolution": "bundler",
- "noEmit": false,
- "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"
- ]
- }
|