mirror of
https://code.forgejo.org/pnpm/action-setup.git
synced 2025-05-17 12:24:45 +00:00
Add TypeScript build step
This commit is contained in:
parent
658ba3a3a8
commit
636254ab6e
3 changed files with 5 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
node_modules
|
node_modules
|
||||||
*.log
|
*.log
|
||||||
|
/dist/tsc
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"build:typescript": "tsc"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"download": "^8.0.0",
|
"download": "^8.0.0",
|
||||||
"@actions/core": "^1.2.4",
|
"@actions/core": "^1.2.4",
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"ES2020",
|
"ES2020",
|
||||||
"ESNext"
|
"ESNext"
|
||||||
],
|
],
|
||||||
|
"outDir": "./dist/tsc",
|
||||||
"preserveConstEnums": true,
|
"preserveConstEnums": true,
|
||||||
"incremental": false,
|
"incremental": false,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue