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

Commit 30ba5df

Browse files
committed
Add tsconfig.json to samples
1 parent 47962d5 commit 30ba5df

File tree

16 files changed

+80
-10
lines changed

16 files changed

+80
-10
lines changed

amd/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"module": "amd",
4+
"sourceMap": true
5+
}
6+
}

angular2/tsconfig.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,5 @@
44
"experimentalDecorators": true,
55
"module": "AMD",
66
"target": "es5"
7-
},
8-
"files": [
9-
"todo.ts"
10-
]
7+
}
118
}

browserify/tsconfig.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,5 @@
22
"compilerOptions": {
33
"module": "CommonJS",
44
"target": "es5"
5-
},
6-
"files": [
7-
"src/node.d.ts",
8-
"src/timeReporter.ts",
9-
"src/app.ts"
10-
]
5+
}
116
}

d3/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true
4+
}
5+
}

greeter/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true
4+
}
5+
}

imageboard/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"sourceMap": true
5+
}
6+
}

interfaces/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true
4+
}
5+
}

jquery/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"sourceMap": true
5+
}
6+
}

jspm/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"module": "system",
4+
"sourceMap": true
5+
}
6+
}

mankala/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true,
4+
"outFile": "game.js"
5+
}
6+
}

node/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"sourceMap": true
5+
}
6+
}

raytracer/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true
4+
}
5+
}

simple/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true
4+
}
5+
}

systemjs/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"module": "system",
4+
"sourceMap": true
5+
}
6+
}

todomvc/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true
4+
}
5+
}

warship/tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"sourceMap": true
5+
}
6+
}

0 commit comments

Comments
 (0)