From 4e9457cbfb1801ad4bee9021abaedbc539731230 Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Fri, 23 Aug 2024 15:51:59 +0800
Subject: [PATCH] feat:可以点ctrl点击定位到文件位置

---
 gz-customerSystem/jsconfig.json |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/gz-customerSystem/jsconfig.json b/gz-customerSystem/jsconfig.json
new file mode 100644
index 0000000..4f9c13b
--- /dev/null
+++ b/gz-customerSystem/jsconfig.json
@@ -0,0 +1,10 @@
+{  
+  "compilerOptions": {  
+    "baseUrl": ".",                          // 基准目录,通常设置为项目根目录  
+    "paths": {  
+      "@/*": ["src/*"]                       // 将 @/ 映射到 src/ 目录下的任何文件  
+    }  
+  },  
+  "exclude": ["node_modules", "**/node_modules/*"], // 可选,排除不希望被索引的目录  
+  "include": ["src/**/*"]                    // 指定哪些文件应该被包含在项目内,通常设置为 src/ 下的所有文件  
+}
\ No newline at end of file

--
Gitblit v1.8.0