tsconfig.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "verbatimModuleSyntax": true,
  11. "noImplicitUseStrict": false,
  12. "noUnusedParameters": true,
  13. "allowUnusedLabels": false,
  14. "noImplicitReturns": true,
  15. "resolveJsonModule": true,
  16. "esModuleInterop": true,
  17. "noUnusedLocals": true,
  18. "paths": {
  19. "ncore-ui-kit": [
  20. "./src/index"
  21. ]
  22. },
  23. "skipLibCheck": true,
  24. "declaration": true,
  25. "target": "ESNext",
  26. "module": "ESNext",
  27. "jsx": "react-jsx",
  28. "composite": true,
  29. "noEmit": false,
  30. "outDir": "lib",
  31. "rootDir": ".",
  32. "strict": true,
  33. "lib": [
  34. "ESNext",
  35. "dom"
  36. ],
  37. "types": [
  38. "node"
  39. ]
  40. },
  41. "include": [
  42. "src/**/*.json",
  43. "package.json",
  44. "src/**/*"
  45. ],
  46. "exclude": [
  47. "node_modules",
  48. "version.mjs",
  49. "**/dist",
  50. "lib"
  51. ]
  52. }