We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 956d73a commit 4bcbe3aCopy full SHA for 4bcbe3a
3 files changed
.gitignore
@@ -1 +1,3 @@
1
node_modules
2
+
3
+dist/*
package.json
@@ -2,6 +2,9 @@
"name": "cpp-warning-notifier",
"type": "module",
4
"main": "src/index.ts",
5
+ "scripts": {
6
+ "build": "tsc"
7
+ },
8
"dependencies": {
9
"@octokit/action": "^7.0.2"
10
},
tsconfig.json
@@ -1,3 +1,6 @@
{
- "extends": "@octokit/tsconfig"
+ "extends": "@octokit/tsconfig",
+ "compilerOptions": {
+ "outDir": "dist"
+ }
}
0 commit comments