Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #249 from MicrosoftDX/development-0.0.16
Browse files Browse the repository at this point in the history
Development 0.0.16
  • Loading branch information
etiennemargraff committed Oct 23, 2015
2 parents 8170e54 + f23bbdc commit e74a2b3
Show file tree
Hide file tree
Showing 131 changed files with 14,453 additions and 3,683 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
npm-debug.log
*.log
/plugins/**/*.css
/plugins/vorlon/**/*.css
tsconfig.json
/Plugins/obj
**/node_modules
Expand All @@ -11,9 +11,8 @@ bin/
GLE id�es.txt
sync.bat
Plugins/Vorlon/plugins/remoteDebugging.zip
<<<<<<< HEAD
.settings/launch.json
=======
*.dat
>>>>>>> 8e38a9097a969c97676d00f30898bb85b7de6c5c
Server/public/stylesheets/style.css
vorlon
/Server/public/stylesheets/style.css
40 changes: 40 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"version": "0.1.0",
// List of configurations. Add new configurations or edit existing ones.
// ONLY "node" and "mono" are supported, change "type" to switch.
"configurations": [
{
// Name of configuration; appears in the launch configuration drop down menu.
"name": "Launch Server/server.js",
// Type of configuration. Possible values: "node", "mono".
"type": "node",
// Workspace relative or absolute path to the program.
"program": "Server/server.js",
// Automatically stop program after launch.
"stopOnEntry": false,
// Command line arguments passed to the program.
"args": [],
// Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
"cwd": ".",
// Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
"runtimeExecutable": null,
// Optional arguments passed to the runtime executable.
"runtimeArgs": ["--nolazy"],
// Environment variables passed to the program.
"env": { },
// Use JavaScript source maps (if they exist).
"sourceMaps": false,
// If JavaScript source maps are enabled, the generated code is expected in this directory.
"outDir": null
},
{
"name": "Attach",
"type": "node",
// TCP/IP address. Default is "localhost".
"address": "localhost",
// Port to attach to.
"port": 5858,
"sourceMaps": false
}
]
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Place your settings in this file to overwrite default and user settings.
{

"editor.fontSize": 15,
}
4 changes: 3 additions & 1 deletion Plugins/Vorlon/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*.js
*.js.map
*.min.js
*.min.js
!verge.min.js
!res.min.js
Loading

0 comments on commit e74a2b3

Please sign in to comment.