| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "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
- },
- "include": [
- "src/**/*.json",
- "src/**/*",
- "package.json"
- ],
- "exclude": [
- "version.mjs",
- "lib",
- "node_modules"
- ]
- }
|