console/tsconfig.eslint.json

23 lines
601 B
JSON
Raw Permalink 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",
2023-04-19 10:27:19 +00:00
"vitest.config.ts",
2023-04-12 09:45:58 +00:00
"scripts/serializer.ts",
"configs",
"codegen.mts"
],
2022-11-09 10:55:07 +00:00
"exclude": ["**/node_modules/**", "**/dist", "**/temp", "**/tmp"]
2022-06-29 11:45:37 +00:00
}