We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dbb177e + ad4118f commit ef0acaaCopy full SHA for ef0acaa
todomvc/.gitignore
@@ -0,0 +1,2 @@
1
+js/*.js
2
+js/*.js.map
todomvc/README.md
@@ -11,8 +11,8 @@ TypeScript integration points are highlighted:
11
12
## Running
13
```
14
-tsc --sourcemap js\todos.ts
15
-start index.html
+npm install
+npm start
16
17
18
## Caveats
todomvc/package.json
@@ -0,0 +1,18 @@
+{
+ "name": "typescript-todomvc",
3
+ "version": "1.0.0",
4
+ "description": "TodoMVC/TypeScript demo",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/Microsoft/TypeScriptSamples.git"
8
+ },
9
+ "dependencies": {
10
+ "http-server": "^0.11.1"
+ "devDependencies": {
+ "typescript": "^3.0.0"
+ "scripts": {
+ "start": "tsc && http-server -o"
+ }
+}
0 commit comments