-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
tsconfig.eslint.json
27 lines (27 loc) · 1.05 KB
/
tsconfig.eslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
// 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": [
"packages/*/src/*/__tests__/**/*.ts",
"packages/*/src/__tests__/**/*.ts",
"packages/*/vite.config.mts",
"packages/*/vitest.config.mts",
"examples/*/vite.config.ts",
"packages/graphiql/src/components/__tests__/**/*.ts",
"packages/graphiql/src/components/__tests__/**/*.tsx",
"packages/cm6-graphql/__tests__/**/*.ts",
"packages/graphql-language-service/benchmark/index.ts",
"packages/graphiql/cypress.config.ts",
"packages/graphiql/__mocks__/codemirror.ts",
"packages/graphiql/__mocks__/@graphiql/react.tsx",
"packages/monaco-graphql/test/*.test.ts",
"packages/graphiql-react/vite.config.d.ts",
"packages/vscode-graphql-syntax/tests/**/*.ts",
"packages/vscode-graphql-syntax/serializer.ts"
]
}