Skip to content

Commit

Permalink
chore(tsconfig): tsconfig updates
Browse files Browse the repository at this point in the history
  • Loading branch information
danbucholtz authored and adamdbradley committed Sep 13, 2016
1 parent bf2b6ab commit 0d55e3c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 25 deletions.
14 changes: 6 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ log.txt
*.sublime-workspace

.idea/
.vscode/
.sass-cache/
.versions/
coverage/
Expand All @@ -21,12 +22,9 @@ $RECYCLE.BIN/
Thumbs.db
UserInterfaceState.xcuserstate

scripts/resources/web-animations-js/test/
scripts/resources/web-animations-js/inter-*
scripts/resources/web-animations-js/**/*.map
scripts/resources/web-animations-js/**/*.md
scripts/resources/web-animations-js/**/*.sh
scripts/resources/web-animations-js/**/*.yml
scripts/resources/web-animations-js/**/*.gz

.package.tmp.json

src/themes/version.scss
scripts/e2e/webpackEntryPoints.json
scripts/build/e2e-generated-tsconfig.json
*.css.ts
10 changes: 7 additions & 3 deletions .scss-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
# See config at https://github.com/brigade/scss-lint/blob/master/config/default.yml

exclude:
- 'src/components/slides/**'
- 'src/components/item/item.ios.scss'
- 'src/components/item/item.md.scss'
- 'src/components/list/list.ios.scss'
- 'src/components/show-hide-when/**'
- 'src/components.*.scss'
- 'src/util/*.scss'
- 'src/components/slides/**'
- 'src/themes/ionic.mixins.scss'
- 'src/themes/license.scss'
- 'src/themes/util.scss'
- 'src/platform/cordova.*.scss'


Expand Down
25 changes: 11 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
{
"compilerOptions": {
"allowUnreachableCode": false,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"lib": ["dom", "es2015"],
"module": "commonjs",
"declaration": true,
"outDir": "dist",
"noImplicitAny": true
"moduleResolution": "node",
"noImplicitAny": false,
"removeComments": true,
"target": "es5",
"types": ["jasmine", "protractor"]
},
"filesGlob": [
"src/**/*.ts",
"!node_modules/**/*"
],
"exclude": [
"node_modules",
"scripts",
"typings/main",
"typings/main.d.ts"
"include": [
"./src/**/*.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
}

0 comments on commit 0d55e3c

Please sign in to comment.