console/tsconfig.eslint.json
2023-02-22 08:41:00 +01:00

21 lines
594 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
},
"include": [
"deployment",
"packages",
"integration-tests",
"cypress",
"cypress.config.ts",
".eslintrc.cjs",
"vite.config.ts",
"serializer.ts",
"packages/web/app/.babelrc.cjs"
],
"exclude": ["**/node_modules/**", "**/dist", "**/temp", "**/tmp"]
}