We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5379f7e commit 1cceb44Copy full SHA for 1cceb44
.eslintrc.js renamed to .eslintrc.cjs
src/meta.ts
@@ -1,5 +1,5 @@
1
import { name as pkgName, version } from "../package.json";
2
-import { TSESLint } from "@typescript-eslint/utils";
+import type { TSESLint } from "@typescript-eslint/utils";
3
4
const meta: TSESLint.FlatConfig.PluginMeta = { name: pkgName, version };
5
tsconfig.json
@@ -6,8 +6,9 @@
6
"module": "Preserve",
7
"moduleResolution": "Bundler",
8
"declaration": true,
9
- "isolatedModules": true,
10
"isolatedDeclarations": true,
+ "isolatedModules": true,
11
+ "verbatimModuleSyntax": true,
12
"noImplicitAny": true,
13
"noImplicitReturns": true,
14
"noFallthroughCasesInSwitch": true,
0 commit comments