feat: add config for build
This commit is contained in:
parent
9ee4a0396c
commit
2432e1b393
@ -20,7 +20,7 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "cp ./README.md ./dist/README.md",
|
"docs": "cp ./README.md ./dist/README.md",
|
||||||
"build": "rimraf ./dist/lib && tsc",
|
"build": "rimraf ./dist/lib && tsc --project tsconfig.build.json",
|
||||||
"up": "yarn docs && yarn build && yarn publish dist"
|
"up": "yarn docs && yarn build && yarn publish dist"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
tsconfig.build.json
Normal file
12
tsconfig.build.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"exclude": [
|
||||||
|
"node_modules",
|
||||||
|
"dist",
|
||||||
|
"src/test",
|
||||||
|
],
|
||||||
|
"compilerOptions": {
|
||||||
|
"experimentalDecorators": false,
|
||||||
|
"emitDecoratorMetadata": false,
|
||||||
|
}
|
||||||
|
}
|
@ -7,6 +7,8 @@
|
|||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"declarationMap": true,
|
"declarationMap": true,
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"emitDecoratorMetadata": true
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules",
|
"node_modules",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user