- TypeScript 1.5 http://www.typescriptlang.org/
- WebPack http://webpack.github.io/
- awesome-typescript-loader https://github.com/s-panferov/awesome-typescript-loader
- DefinitelyTyped http://definitelytyped.org/
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.docker.vmnetd</string> | |
<key>Program</key> | |
<string>/Library/PrivilegedHelperTools/com.docker.vmnetd</string> | |
<key>ProgramArguments</key> | |
<array> |
This file contains 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
declare module "react-redux" { | |
import React from "react"; | |
import * as redux from "redux"; | |
interface ProviderProps { | |
store: redux.Store<any, any>; | |
} | |
interface ProviderState { | |
store: redux.Store<any, any>; |
This file contains 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 Immutable from 'immutable'; | |
import { | |
Profile, | |
User, | |
} from './models'; | |
export { | |
Profile, | |
User, |
This file contains 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
webpackJsonp([0],[ | |
/* 0 */ | |
/***/ function(module, exports, __webpack_require__) { | |
module.exports = __webpack_require__(1); | |
/***/ }, | |
/* 1 */ | |
/***/ function(module, exports) { |
This file contains 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
var webpack = require('webpack'); | |
var path = require("path"); | |
var fs = require("fs"); | |
var nodeModules = {}; | |
fs.readdirSync('node_modules') | |
.filter(function (x) { | |
return ['.bin'].indexOf(x) === -1; | |
}) | |
.forEach(function (mod) { |
This file contains 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
{ | |
"version": "1.5.0-beta", | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"jsx": "react", | |
"declaration": false, | |
"noImplicitAny": false, | |
"removeComments": true, | |
"noLib": false, |
This file contains 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 invariant from '../lib/invariant'; | |
import * as models from './index'; | |
import { Record, Map, Set, List } from 'immutable'; | |
import { Option, Some, None } from 'opty'; | |
export enum ChatType { | |
Dialog = <any>'dialog', | |
Room = <any>'room' | |
} |
This file contains 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
{ | |
block : 'form-field', | |
name : 'documentUrgency', | |
mods : { theme : 'alfa', bkg : 'color' }, | |
content : [ | |
{ tag : 'br' }, | |
{ tag : 'br' }, | |
{ tag : 'br' }, | |
{ | |
block : 'checkbox', |
This file contains 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
modules.define('madison', | |
['log', 'config', 'utils', 'router', 'bank__auth', 'bank__customers', 'page'], | |
function(provide, log, config, utils, router, bankAuth, bankCustomers, page) { | |
var vow = require('vow'), | |
express = require('express'), | |
path = require('path'), | |
cookies = require('cookie-parser'), | |
session = require('express-session'), | |
body = require('body-parser'); |
NewerOlder