add template file
This commit is contained in:
parent
20e6f5c96d
commit
7516cef93e
18
doric-cli/assets-lib/example/.vscode/launch.json
vendored
Normal file
18
doric-cli/assets-lib/example/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Doric Debugger",
|
||||
"program": "${workspaceFolder}/${relativeFile}",
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceFolder}/bundle/**/*.js"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
28
doric-cli/assets-lib/example/.vscode/tasks.json
vendored
Normal file
28
doric-cli/assets-lib/example/.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Doric Build",
|
||||
"type": "shell",
|
||||
"command": "npm run build",
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Doric Clean",
|
||||
"type": "shell",
|
||||
"command": "npm run clean",
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Doric Dev",
|
||||
"type": "shell",
|
||||
"command": "npm run dev",
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user