feat(cli): support generate web-types (#5893) (#5903)

This commit is contained in:
neverland
2020-03-25 10:09:27 +08:00
committed by GitHub
parent c74fbf58a4
commit 5f16f1fb6d
6 changed files with 58 additions and 13 deletions
+9 -5
View File
@@ -1,9 +1,13 @@
{
"extends": "../../tsconfig",
"include": ["src/*"],
"compilerOptions": {
"target": "ES2017",
"outDir": "./lib",
"module": "commonjs",
"outDir": "lib",
"noEmit": false
}
"strict": true,
"declaration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"lib": ["esnext"]
},
"include": ["src/**/*"]
}