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",
|
2023-04-19 10:27:19 +00:00
|
|
|
"vitest.config.ts",
|
2023-04-12 09:45:58 +00:00
|
|
|
"scripts/serializer.ts",
|
2023-07-25 07:12:08 +00:00
|
|
|
"packages/web/app/.babelrc.cjs",
|
|
|
|
|
"configs",
|
|
|
|
|
"codegen.mts"
|
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
|
|
|
}
|