This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "dependencies": { | |
| "react": "^15.0.1", | |
| "react-dom": "^15.0.1", | |
| "react-router": "^2.1.1" | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <body> | |
| <div id="root"></div> | |
| </body> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | client/ | |
| hello.tsx | |
| index.html | |
| package.json | |
| typings.json | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              Show hidden characters
| { | |
| "compilerOptions": { | |
| "outDir": "./dist/", | |
| "sourceMap": true, | |
| "noImplicitAny": true, | |
| "module": "commonjs", | |
| "target": "es5", | |
| "jsx": "react" | |
| }, | |
| "files": [ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import * as React from "react"; | |
| import { render } from "react-dom"; | |
| class Hello extends React.Component<{}, {}> { | |
| render() { | |
| return ( | |
| <div> | |
| <h1>Hello from boilerplate-land!</h1> | |
| </div> | |
| ); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| ... | |
| </head> | |
| <body> | |
| <div id="root"></div> | |
| <!-- Dependencies --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.0.1/react.js"></script> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "main": "./lib/bundle.js", | |
| "scripts": { | |
| "webpack": "webpack", | |
| "dev-server": "webpack-dev-server", | |
| }, | |
| "devDependencies": { | |
| "source-map-loader": "^0.1.5", | |
| "ts-loader": "^0.8.1", | |
| "webpack": "^1.12.14", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | src/ | |
| index.tsx | |
| dist/ | |
| index.html | |
| package.json | |
| tsconfig.json | |
| typings.json | |
| webpack.config.js | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | module.exports = { | |
| entry: "./src/index.tsx", | |
| output: { | |
| filename: "./dist/bundle.js", | |
| }, | |
| // Enable sourcemaps for debugging webpack's output. | |
| devtool: "source-map", | |
| // Makes webpack-dev-server run on port 300 |