console/tsconfig.eslint.json
2026-03-06 22:37:08 +01:00

23 lines
625 B
JSON

{
// https://typescript-eslint.io/docs/linting/typed-linting/monorepos/#one-root-tsconfigjson
// extend your base config to share compilerOptions, etc
"extends": "./tsconfig.json",
"compilerOptions": {
// ensure that nobody can accidentally use this config for a build
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"deployment",
"packages",
"integration-tests",
"cypress",
"cypress.config.ts",
".eslintrc.cjs",
"vitest.config.ts",
"scripts/serializer.ts",
"configs",
"codegen.mts"
],
"exclude": ["**/node_modules/**", "**/dist", "**/temp", "**/tmp"]
}