tsconfig.json 1.3 KB

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