We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e95e65 commit 3cda001Copy full SHA for 3cda001
package.json
@@ -1,7 +1,12 @@
1
{
2
"name": "serverless-plugin-typescript",
3
- "version": "0.1.8",
+ "version": "0.1.10",
4
"main": "dist/src/index.js",
5
+ "files": [
6
+ "dist",
7
+ "package.json",
8
+ "README.md"
9
+ ],
10
"scripts": {
11
"prepublish": "npm run build",
12
"build": "rm -rf dist && tsc",
tsconfig.json
@@ -1,11 +1,12 @@
"compilerOptions": {
"module": "commonjs",
+ "rootDir": ".",
"target": "es6",
"sourceMap": true,
"outDir": "dist"
},
"exclude": [
"node_modules"
]
-}
+}
0 commit comments