console/tsconfig.eslint.json

22 lines
594 B
JSON
Raw Normal View History

2022-06-29 11:45:37 +00:00
{
// https://typescript-eslint.io/docs/linting/typed-linting/monorepos/#one-root-tsconfigjson
// extend your base config to share compilerOptions, etc
2022-06-29 11:45:37 +00:00
"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",
2023-02-19 02:50:29 +00:00
".eslintrc.cjs",
"vite.config.ts",
"serializer.ts",
"packages/web/app/.babelrc.cjs"
],
2022-11-09 10:55:07 +00:00
"exclude": ["**/node_modules/**", "**/dist", "**/temp", "**/tmp"]
2022-06-29 11:45:37 +00:00
}