tsconfig.json 1.2 KB

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