We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 853956b commit 4821a29Copy full SHA for 4821a29
package.json
@@ -7,6 +7,7 @@
7
},
8
"description": "CLI tool to run Twilio Functions locally for development",
9
"main": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
"scripts": {
12
"clean": "rimraf dist",
13
"build": "tsc",
tsconfig.json
@@ -1,7 +1,8 @@
1
{
2
"extends": "./tsconfig.base.json",
3
"compilerOptions": {
4
+ "declaration": true,
5
"outDir": "./dist" /* Redirect output structure to the directory. */,
6
- "exclude": ["node_modules", "**/*.test.ts"]
+ "exclude": ["node_modules", "**/*.test.ts", "dist"]
}
0 commit comments