tsconfig.json 996 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "compilerOptions": {
  3. "rootDir": ".",
  4. "paths": {
  5. "ncore-ui-kit-mobile": [
  6. "./src/index"
  7. ]
  8. },
  9. "allowUnreachableCode": false,
  10. "allowUnusedLabels": false,
  11. "customConditions": [
  12. "react-native-strict-api"
  13. ],
  14. "esModuleInterop": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "jsx": "react-jsx",
  17. "lib": [
  18. "ESNext"
  19. ],
  20. "module": "ESNext",
  21. "moduleResolution": "bundler",
  22. "noEmit": true,
  23. "noFallthroughCasesInSwitch": true,
  24. "noImplicitReturns": true,
  25. "noImplicitUseStrict": false,
  26. "noStrictGenericChecks": false,
  27. "noUncheckedIndexedAccess": true,
  28. "noUnusedLocals": true,
  29. "noUnusedParameters": true,
  30. "resolveJsonModule": true,
  31. "skipLibCheck": true,
  32. "strict": true,
  33. "target": "ESNext",
  34. "verbatimModuleSyntax": true
  35. }
  36. }