console/tsconfig.eslint.json

24 lines
625 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
2026-03-06 21:37:08 +00:00
"noEmit": true,
"jsx": "react-jsx"
},
"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
}