skip to Main Content

Javascript – Running tsc on an eslint.config.js raises error

I am running tsc --skipLibCheck with the files below: eslint.config.js: // @ts-check import jslint from "@eslint/js" export default [] tsconfig.json: { "compilerOptions": { "strict": true, "target": "ES5", "useDefineForClassFields": true, "lib": ["ES2022", "DOM", "DOM.Iterable"], "module": "ES2022", "skipLibCheck": true, "allowJs": true, "moduleResolution":…

VIEW QUESTION
Back To Top
Search