Files
archived-tauri-vscode/.vscode/tasks.json
Amr Bashir c64d572c1c fix: bundle extension using tsup (#268)
* fix: bundle extension using tsup

closes #267

* deps
2024-09-02 19:53:00 +03:00

23 lines
489 B
JSON

// Copyright 2020-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
//
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}