Skip to content

Commit 3cda001

Browse files
committed
bump
1 parent 1e95e65 commit 3cda001

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
22
"name": "serverless-plugin-typescript",
3-
"version": "0.1.8",
3+
"version": "0.1.10",
44
"main": "dist/src/index.js",
5+
"files": [
6+
"dist",
7+
"package.json",
8+
"README.md"
9+
],
510
"scripts": {
611
"prepublish": "npm run build",
712
"build": "rm -rf dist && tsc",

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4+
"rootDir": ".",
45
"target": "es6",
56
"sourceMap": true,
67
"outDir": "dist"
78
},
89
"exclude": [
910
"node_modules"
1011
]
11-
}
12+
}

0 commit comments

Comments
 (0)