From 517423bc763d4365b71045935905f32134412ba4 Mon Sep 17 00:00:00 2001 From: canon <502372554@qq.com> Date: Sun, 15 Mar 2026 12:12:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BC=96=E8=BE=91=E5=99=A8?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E4=BB=A3=E7=A0=81=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ctrl+鼠标,自动跳转到对应源码 --- ruoyi-fastapi-frontend/jsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ruoyi-fastapi-frontend/jsconfig.json diff --git a/ruoyi-fastapi-frontend/jsconfig.json b/ruoyi-fastapi-frontend/jsconfig.json new file mode 100644 index 00000000..779759a9 --- /dev/null +++ b/ruoyi-fastapi-frontend/jsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["src/*"], + "@util/*": ["src/utils/*"] + }, + "module": "ESNext", + "moduleResolution": "bundler", + "target": "ESNext", + "checkJs": false + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}