From 471175d08d9144b244f29952bb77794f729f676c Mon Sep 17 00:00:00 2001 From: louiscklaw Date: Fri, 16 May 2025 11:16:10 +0800 Subject: [PATCH] ```refactor Update tsconfig.json to include trailing comments in compilerOptions paths and exclude patterns ``` --- 002_source/cms/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/002_source/cms/tsconfig.json b/002_source/cms/tsconfig.json index 99c0b2e..5701beb 100644 --- a/002_source/cms/tsconfig.json +++ b/002_source/cms/tsconfig.json @@ -5,6 +5,7 @@ "dom", "dom.iterable", "esnext" + // ], "allowJs": true, "skipLibCheck": true, @@ -27,6 +28,7 @@ "paths": { "@/*": [ "./src/*" + // ] } }, @@ -35,6 +37,7 @@ "**/*.ts", "**/*.tsx", ".next/types/**/*.ts" + // ], "exclude": [ "node_modules", @@ -49,6 +52,6 @@ "**/*.draft", "**/*.log", "**/*.tmp", - "**/*del", + "**/*del" ] }