Created
June 7, 2015 10:04
-
-
Save alihammad-gist/7c2e3ebe2665a845dd3f to your computer and use it in GitHub Desktop.
typescrit react
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
{ | |
"name": "ts-react", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"build": "tsc", | |
"browserify": "browserify build/main.js -o public/js/main.js", | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", | |
"private": true, | |
"dependencies": { | |
"jsnox": "^1.0.0", | |
"react": "^0.13.3" | |
} | |
} |
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": { | |
"module": "commonjs", | |
"outDir": "build" | |
}, | |
"files": [ | |
"src/main.ts", | |
"src/elems/heading.ts" | |
] | |
} |
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
{ | |
"version": "v4", | |
"repo": "borisyankov/DefinitelyTyped", | |
"ref": "master", | |
"path": "typings", | |
"bundle": "typings/tsd.d.ts", | |
"installed": { | |
"react/react.d.ts": { | |
"commit": "8c7444882a2bc2ab87387f8f736a7d97e89b9c90" | |
}, | |
"jsnox/jsnox.d.ts": { | |
"commit": "8c7444882a2bc2ab87387f8f736a7d97e89b9c90" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment