Skip to content

Commit

Permalink
Adding gitignore entries for all generated output
Browse files Browse the repository at this point in the history
Fixing tsconfig ignore on dist folder
  • Loading branch information
damyanpetev committed Jul 12, 2016
1 parent 6040751 commit 7e8f480
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,28 @@ node_modules

# Optional REPL history
.node_repl_history

# Typings
typings

# Typescript output
app/*.d.ts
app/*.js
app/*.js.map

samples/**/*.d.ts
samples/**/*.js
samples/**/*.js.map

src/igniteui.angular2.d.ts
src/*.js
src/*.js.map

tests/unit/**/*.d.ts
tests/unit/**/*.js
tests/unit/**/*.js.map

# Build:
dist/npm
!dist/npm/README.md
!dist/npm/package.json
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": ["node_modules", "typings/main", "typings/main.d.ts", "dist/npm/" ]
"exclude": ["node_modules", "typings/main", "typings/main.d.ts", "dist/npm" ]
}

0 comments on commit 7e8f480

Please sign in to comment.