tsconfig.json 1.1 KB

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