4 changed files with 74 additions and 1 deletions
@ -0,0 +1,37 @@ |
|||||||
|
{ |
||||||
|
// 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": [ |
||||||
|
{ |
||||||
|
"name": "Rambox-OS: Main", |
||||||
|
"type": "node", |
||||||
|
"request": "launch", |
||||||
|
"protocol": "inspector", |
||||||
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", |
||||||
|
"args": [ |
||||||
|
"--remote-debugging-port=9223", |
||||||
|
"build/production/Rambox" |
||||||
|
], |
||||||
|
"outFiles": [ "${workspaceFolder}/build/production/**/*.js" ] |
||||||
|
}, |
||||||
|
{ |
||||||
|
"name": "Rambox-OS: Renderer", |
||||||
|
"type": "chrome", |
||||||
|
"request": "attach", |
||||||
|
"port": 9223, |
||||||
|
"webRoot": "${workspaceFolder}", |
||||||
|
"timeout": 30000, |
||||||
|
}, |
||||||
|
], |
||||||
|
"compounds": [ |
||||||
|
{ |
||||||
|
"name": "Rambox-OS: All", |
||||||
|
"configurations": [ |
||||||
|
"Rambox-OS: Main", |
||||||
|
"Rambox-OS: Renderer" |
||||||
|
] |
||||||
|
} |
||||||
|
] |
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
{ |
||||||
|
"eslint.enable": true, |
||||||
|
"search.exclude": { |
||||||
|
"**/node_modules": true, |
||||||
|
"**/bower_components": true, |
||||||
|
"ext": true, |
||||||
|
"**/.sencha": true, |
||||||
|
"**/*.jsonp": true, |
||||||
|
"**/sencha-error-*.log": true |
||||||
|
}, |
||||||
|
"es6-css-minify.css": { |
||||||
|
"level": 2 |
||||||
|
}, |
||||||
|
"es6-css-minify.js": { |
||||||
|
"output": { |
||||||
|
"ecma": 6 |
||||||
|
} |
||||||
|
}, |
||||||
|
"es6-css-minify.minifyOnSave": "exists", |
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
{ |
||||||
|
// 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", |
||||||
|
"problemMatcher": [], |
||||||
|
"group": { |
||||||
|
"kind": "build", |
||||||
|
"isDefault": true |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
} |
Loading…
Reference in new issue