2022-06-29 11:45:37 +00:00
|
|
|
{
|
2022-12-02 10:12:07 +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",
|
2022-12-02 10:12:07 +00:00
|
|
|
"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",
|
2023-02-22 07:41:00 +00:00
|
|
|
"packages/web/app/.babelrc.cjs"
|
2022-12-02 10:12:07 +00:00
|
|
|
],
|
2022-11-09 10:55:07 +00:00
|
|
|
"exclude": ["**/node_modules/**", "**/dist", "**/temp", "**/tmp"]
|
2022-06-29 11:45:37 +00:00
|
|
|
}
|