From b496e23d9a66a3704f5aff28c619271e88656bfb Mon Sep 17 00:00:00 2001 From: Sped0n Date: Wed, 1 Nov 2023 23:24:05 +0800 Subject: [PATCH] chore(tsconfig.json): remove "watch" option to avoid confusion as it is not needed chore(tsconfig.json): add "baseUrl" option with value "./" to set the base URL for module resolution --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 3288c16..37e6686 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { "compilerOptions": { - "watch": false, "lib": ["esnext", "dom"], "removeComments": true, "target": "es2021", "module": "esnext", + "baseUrl": "./", "strict": true, "esModuleInterop": true, "skipLibCheck": true,