From f881f597fbb06ba976b8cadc65d9bf55f5cd795d Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Mon, 25 Apr 2022 00:39:02 -0700 Subject: [PATCH] Take 2 on getting tsc to behave --- web/tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/tsconfig.json b/web/tsconfig.json index 643de6e5..f2426297 100644 --- a/web/tsconfig.json +++ b/web/tsconfig.json @@ -15,6 +15,10 @@ "jsx": "preserve", "incremental": true }, + + "watchOptions": { + "excludeDirectories": [".next"] + }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "../common/**/*.ts"], - "exclude": ["node_modules", ".next"] + "exclude": ["node_modules"] }