Skip to content
This repository was archived by the owner on Apr 25, 2026. It is now read-only.

v0.3.0

Choose a tag to compare

@XenoPOMP XenoPOMP released this 23 Oct 21:20
· 87 commits to master since this release

deprecation/deprecation rule

1. Modify the main config

export default xenopomp(
  {
    deprecation: 'warn',
    // You may have to create custom tsconfig file, because parser plugin will not find
    // your ts files
    tsconfigPath: './.config/ts/tsconfig.lint.json',
  },
);

2. Create custom tsconfig

// .config/ts/tsconfig.lint.json
{
  "extends": "../../tsconfig.json",
  "include": [
    "../../**/*.ts",
    "../../**/*.tsx",
    "../../**/.config/**/*.ts",
    "../../**/__tests__/**/*.ts",
  ],
  "exclude": ["node_modules"]
}