From 35f353c1f78166592a4a2de7bbe202f3be0a3df0 Mon Sep 17 00:00:00 2001 From: ChenZhaoYu <790348264@qq.com> Date: Mon, 13 Feb 2023 19:56:11 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=A1=A5=E5=85=A8=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/.npmrc | 1 + service/tsconfig.json | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 service/.npmrc create mode 100644 service/tsconfig.json diff --git a/service/.npmrc b/service/.npmrc new file mode 100644 index 0000000..6c59086 --- /dev/null +++ b/service/.npmrc @@ -0,0 +1 @@ +enable-pre-post-scripts=true diff --git a/service/tsconfig.json b/service/tsconfig.json new file mode 100644 index 0000000..7477192 --- /dev/null +++ b/service/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "target": "es2020", + "lib": [ + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "strict": false, + "forceConsistentCasingInFileNames": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "baseUrl": ".", + "outDir": "build", + "noEmit": true + }, + "exclude": [ + "node_modules", + "build" + ], + "include": [ + "**/*.ts" + ] +}