From 8d750c7b07d3f9562d3eaa6c74c9d5fb1d23a653 Mon Sep 17 00:00:00 2001 From: xiaowei Date: Tue, 5 Jan 2021 18:40:11 +0800 Subject: [PATCH] build: skipLibCheck and output sourceMap --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 7bad3c8..d2e575d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,13 @@ { "compilerOptions": { "outDir": "./dist/", - "sourceMap": false, + "sourceMap": true, "allowJs":true, "target": "es6", "module": "commonjs", "noUnusedLocals": true, "noUnusedParameters": false, + "skipLibCheck": true, "typeRoots": [ "node", "node_modules/@types",