mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
Co-authored-by: Dimitri POSTOLOV <dmytropostolov@gmail.com> Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
18 lines
514 B
JSON
18 lines
514 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"
|
|
],
|
|
"exclude": ["**/node_modules/**", "**/dist", "**/temp", "**/tmp"]
|
|
}
|