Skip to content

Commit

Permalink
do not check the out folder
Browse files Browse the repository at this point in the history
  • Loading branch information
egamma committed Sep 14, 2015
1 parent 47944dd commit 0201072
Show file tree
Hide file tree
Showing 35 changed files with 4,823 additions and 2,809 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
out
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
// path to VSCode executable
"runtimeExecutable": "${execPath}",
// force VSCode to create a new window and pass this project as an additonal plugin location
"args": [ "--new-window", "--extensionDevelopmentWorkspacePath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "out",
"task": "build"
}
]
}
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false,
"typings": false
}
}
29 changes: 29 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team
// ${file}: the current opened file
// ${fileBasename}: the current opened file's basename
// ${fileDirname}: the current opened file's dirname
// ${fileExtname}: the current opened file's extension
// ${cwd}: the current working directory of the spawned process

// A task runner that calls the Typescript compiler (tsc) and
// compiles the extension.
{
"version": "0.1.0",

// The command is tsc. Assumes that tsc 1.5.x or higher has been installed using npm install -g typescript
"command": "tsc",

// The command is a shell script
"isShellCommand": true,

// Show the output window only if unrecognized errors occur.
"showOutput": "silent",

// args is the HelloWorld program to compile.
"args": [],

// use the standard tsc problem matcher to find compile problems
// in the output.
"problemMatcher": "$tsc"
}
79 changes: 0 additions & 79 deletions out/goCheck.js

This file was deleted.

1 change: 0 additions & 1 deletion out/goCheck.js.map

This file was deleted.

51 changes: 0 additions & 51 deletions out/goDeclaration.js

This file was deleted.

1 change: 0 additions & 1 deletion out/goDeclaration.js.map

This file was deleted.

138 changes: 0 additions & 138 deletions out/goDef.js

This file was deleted.

Loading

0 comments on commit 0201072

Please sign in to comment.