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

Commit 397583b

Browse files
Add to README.md, give specific file list in tsconfig.json.
1 parent 8b1ef50 commit 397583b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

amd/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
# TypeScript Sample: AMD Module
1+
# TypeScript Sample: AMD Modules
22

33
## Overview
4+
45
This sample shows a simple Typescript application using an AMD module.
6+
It uses [require.js](http://www.requirejs.org/) to load `app.js` once compiled from `app.ts`
57

68
## Running
9+
710
```
811
tsc --sourcemap --module amd app.ts
912
start default.htm

amd/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"compilerOptions": {
33
"module": "amd",
44
"sourceMap": true
5-
}
5+
},
6+
"files": [
7+
"app.ts"
8+
]
69
}

0 commit comments

Comments
 (0)