tsconfig.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. "include": [
  45. "src/**/*.json",
  46. "src/**/*",
  47. "package.json"
  48. ],
  49. "exclude": [
  50. "version.mjs",
  51. "lib",
  52. "node_modules"
  53. ]
  54. }