diff --git a/eslint.config.cjs b/eslint.config.cjs index 41eee18..c6ec6ee 100644 --- a/eslint.config.cjs +++ b/eslint.config.cjs @@ -42,7 +42,7 @@ module.exports = [ files: ['**/*.ts', '**/*.tsx'], languageOptions: { parserOptions: { - project: ['./tsconfig.json'], + project: ['./tsconfig.json', './src/ui/tsconfig.app.json'], }, }, }, diff --git a/tsconfig.json b/tsconfig.json index 883034c..cd8207e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,5 +15,6 @@ "allowUnusedLabels": false, "types": ["jest", "node", "google-apps-script"] }, - "include": ["src/**/*", "test/**/*", "rollup.config.mjs"] + "include": ["src/**/*", "test/**/*", "rollup.config.mjs"], + "exclude": ["src/ui/**/*"] }