Skip to content

Commit

Permalink
Adds a create-react app inline
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Dec 21, 2016
1 parent d716974 commit 4384f3d
Show file tree
Hide file tree
Showing 15 changed files with 6,669 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
out
node_modules
_jest-editor/
integrations/create-react-example/node_modules
8 changes: 3 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
"out": true
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
"tslint.exclude": "./integrations/*",
"typescript.tsdk": "./node_modules/typescript/lib",
"eslint.enable": false
}
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ src/**
.gitignore
tsconfig.json
vsc-extension-quickstart.md
integration/**
15 changes: 15 additions & 0 deletions integrations/create-react-example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
node_modules

# testing
coverage

# production
build

# misc
.DS_Store
.env
npm-debug.log
Loading

0 comments on commit 4384f3d

Please sign in to comment.