tsc on build-config

This commit is contained in:
Manav Rathi
2024-11-19 20:04:52 +05:30
parent e668c86185
commit 9e2a70e469
2 changed files with 2 additions and 3 deletions

View File

@@ -1,5 +1,3 @@
// @ts-check
import reactPlugin from "eslint-plugin-react";
import hooksPlugin from "eslint-plugin-react-hooks";
import reactRefreshPlugin from "eslint-plugin-react-refresh";

View File

@@ -1,11 +1,12 @@
{
/* A minimal tsconfig so that we can run tsc on the build-config itself. */
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"checkJs": true,
"esModuleInterop": true
},
"include": ["*.js", "eslintrc-*.mjs"]
"include": ["eslintrc-base.mjs"]
}