Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit cf40601

Browse files
Merge pull request #3 from Microsoft/addSourcemap
Added '--sourcemap' to each README.txt
2 parents 8518ac1 + 7b31d8c commit cf40601

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

amd/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This sample shows a simple Typescript application using an AMD module.
55

66
=== Running ===
7-
tsc --module amd app.ts
7+
tsc --sourcemap --module amd app.ts
88
start default.htm
99

1010

d3/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ D3 visualization
77
- Use of modules and interfaces
88

99
=== Running ===
10-
tsc data.ts
10+
tsc --sourcemap data.ts
1111
start perf.html

greeter/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
This sample shows basic class definition and instantiation.
66

77
=== Running ===
8-
tsc greeter.ts
8+
tsc --sourcemap greeter.ts
99
start greeter.html

imageboard/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ npm install
3030

3131
5. Compile the app with the following command:
3232

33-
tsc --module commonjs app.ts
33+
tsc --sourcemap --module commonjs app.ts
3434

3535
6. Launch the Node process to serve the app using the following command:
3636

interfaces/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ class Helicopter implements Flyable { ... }
1515
class FlyingCar implements Drivable, Flyable { ... }
1616

1717
=== Running ===
18-
tsc interfaces.ts
18+
tsc --sourcemap interfaces.ts

jquery/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ This sample shows a simple jQuery application in TypeScript using a jQuery TypeS
99
For best results, scroll the window using the scrollbar.
1010

1111
=== Running ===
12-
tsc --target ES5 parallax.ts
12+
tsc --sourcemap --target ES5 parallax.ts
1313
start parallax.html

mankala/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ features of TypeScript are highlighted:
1111

1212

1313
=== Running ===
14-
tsc Driver.ts -out game.js
14+
tsc Driver.ts --sourcemap -out game.js
1515
cscript game.js
1616

1717
For web execution use play.htm.

node/README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ This sample implements a very basic node.js application using TypeScript
66

77
=== Running ===
88
For HttpServer
9-
tsc --module commonjs HttpServer.ts
9+
tsc --sourcemap --module commonjs HttpServer.ts
1010
node HttpServer.js
1111

1212
For TcpServer
13-
tsc --module commonjs TcpServer.ts
13+
tsc --sourcemap --module commonjs TcpServer.ts
1414
node TcpServer.js

raytracer/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
This sample shows a raytracer implementation in TypeScript.
66

77
=== Running ===
8-
tsc raytracer.ts
8+
tsc --sourcemap raytracer.ts
99
start raytracer.html

simple/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Simple use of classes and inheritance:
88

99

1010
=== Running ===
11-
tsc animals.ts
11+
tsc --sourcemap animals.ts

0 commit comments

Comments
 (0)