Skip to content

Commit 7e8f480

Browse files
committed
Adding gitignore entries for all generated output
Fixing tsconfig ignore on dist folder
1 parent 6040751 commit 7e8f480

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,28 @@ node_modules
3131

3232
# Optional REPL history
3333
.node_repl_history
34+
35+
# Typings
36+
typings
37+
38+
# Typescript output
39+
app/*.d.ts
40+
app/*.js
41+
app/*.js.map
42+
43+
samples/**/*.d.ts
44+
samples/**/*.js
45+
samples/**/*.js.map
46+
47+
src/igniteui.angular2.d.ts
48+
src/*.js
49+
src/*.js.map
50+
51+
tests/unit/**/*.d.ts
52+
tests/unit/**/*.js
53+
tests/unit/**/*.js.map
54+
55+
# Build:
56+
dist/npm
57+
!dist/npm/README.md
58+
!dist/npm/package.json

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"compilerOptions": {
33
"target": "es5",
44
"module": "system",
5-
"moduleResolution": "node",
5+
"moduleResolution": "node",
66
"sourceMap": true,
77
"emitDecoratorMetadata": true,
88
"experimentalDecorators": true,
99
"removeComments": false,
1010
"noImplicitAny": false
1111
},
12-
"exclude": ["node_modules", "typings/main", "typings/main.d.ts", "dist/npm/" ]
12+
"exclude": ["node_modules", "typings/main", "typings/main.d.ts", "dist/npm" ]
1313
}

0 commit comments

Comments
 (0)