| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "compilerOptions": {
- "rootDir": ".",
- "paths": {
- "ncore-ui-kit": [
- "./src/index"
- ]
- },
- "types": [
- "node"
- ],
- "outDir": "lib",
- "declarationDir": "lib/typescript",
- "allowUnreachableCode": false,
- "allowUnusedLabels": false,
- "composite": true,
- "declaration": true,
- "customConditions": [
- "react-native-strict-api"
- ],
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "jsx": "react-jsx",
- "lib": [
- "ESNext",
- "dom"
- ],
- "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",
- "lib",
- "node_modules"
- ]
- }
|