refactor: js to ts for rax-provider

Link: https://code.aone.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/codereview/3678180

* refactor: rax-provider

* feat: add build command

* chore: compilerOptions for rax-provider
This commit is contained in:
wuji.xwt 2020-09-07 13:32:26 +08:00
parent f683dd78c7
commit 13989d3cc9
6 changed files with 14 additions and 1 deletions

View File

@ -9,7 +9,8 @@
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"start": "build-scripts start"
"start": "build-scripts start",
"build": "build-scripts build"
},
"peerDependencies": {
"prop-types": "^15.7.2",

View File

@ -0,0 +1,12 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"declaration": false,
"outDir": "lib",
"strict": false,
"rootDir": "../"
},
"include": [
"./src/"
]
}