Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@mi-gpt/config

idootop59MIT1.1.0TypeScript support: included

MiGPT 公共配置

migpt

readme

@mi-gpt/config

MiGPT 公共配置

package.json

{
  "type": "module",
  "devDependencies": {
    "@mi-gpt/config": "workspace:*",
    "@biomejs/biome": "^1.9.4",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2"
  }
}

tsconfig.json

{
  "extends": "@mi-gpt/config/typescript",
  "include": ["**/*.ts", "**/*.tsx"],
  "exclude": ["node_modules"]
}

biome.json

{
  "extends": ["@mi-gpt/config/biome"]
}

tsup.config.ts

import { baseConfig } from "@mi-gpt/config/tsup";
import { defineConfig } from "tsup";

export default defineConfig({
  ...baseConfig,
});