From 0b733d0a32a6cfe1b42ff39b012c899447c76ba2 Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Mon, 30 Dec 2024 17:39:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=9B=B8=E5=85=B3=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .npmrc | 13 +++++++++++++ jsconfig.json | 10 ++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .npmrc create mode 100644 jsconfig.json diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..0630a51 --- /dev/null +++ b/.npmrc @@ -0,0 +1,13 @@ +# 配置npm仓库地址 +registry=http://172.30.31.77:8081/repository/npm-public/ +# electron二进制文件下载地址 +electron_mirror=http://172.30.31.77:8080/uploadfiles/electron/ +# electron_builder二进制文件下载地址 +electron_builder_binaries_mirror=http://172.30.31.77:8080/uploadfiles/electron_builder/ + +# sass_binary_site = https://npm.taobao.org/mirrors/node-sass/ +# phantomjs_cdnurl = http://cnpmjs.org/downloads +# electron_mirror = https://npm.taobao.org/mirrors/electron/ +# sqlite3_binary_host_mirror = https://foxgis.oss-cn-shanghai.aliyuncs.com/ +# profiler_binary_host_mirror = https://npm.taobao.org/mirrors/node-inspector/ +# chromedriver_cdnurl = https://cdn.npm.taobao.org/dist/chromedriver diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..f87334d --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} -- Gitee