// src/library/components/react/tsconfig.json
{
    "compilerOptions": {
      "target": "ES6",
      "lib": ["dom", "esnext"],
      "module": "ESNext",
      "jsx": "react",
      "strict": true,
      "esModuleInterop": true,
      "moduleResolution": "node",
      "rootDir": "src",
      "skipLibCheck": true,
  
      // 주의! Rollup + @rollup/plugin-typescript를 사용할 때
      // outDir와 declaration을 동시에 지정하면 충돌 가능
      "declaration": false
    },
    "include": ["src/**/*"],
    "exclude": ["node_modules", "dist"]
  }
  