Skip to content

Commit

Permalink
revert tsc config
Browse files Browse the repository at this point in the history
  • Loading branch information
bfwg committed Feb 10, 2017
1 parent 8b087d9 commit c00ef8a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"scripts": {
"prepublish": "npm run tsc",
"clean:build": "npm run rimraf -- **/*.js **/*.d.ts **/*.map index.js index.d.ts index.js.map",
"clean": "npm run clean:build && npm run rimraf -- node_modules && npm cache clean",
"clean": "npm run rimraf -- node_modules && npm cache clean",
"rimraf": "rimraf",
"tsc": "tsc -p src"
},
Expand All @@ -31,17 +31,19 @@
"url": "https://github.com/bfwg/angular2-drag-scroll.git"
},
"homepage": "https://github.com/bfwg/angular2-drag-scroll#readme",
"dependencies": {
"peerDependencies": {
"@angular/common": "~2.2.0",
"@angular/compiler": "~2.2.0",
"@angular/core": "~2.2.0",
"@angular/platform-browser": "~2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0"
},
"devDependencies": {
"@types/node": "^6.0.42",
"@types/selenium-webdriver": "~2.53.39",
"@types/jasmine": "2.5.38",
"@angular/common": "~2.2.0",
"@angular/compiler": "~2.2.0",
"@angular/core": "~2.2.0",
"@angular/platform-browser": "~2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0",
"rxjs": "5.0.0-beta.12",
"rimraf": "2.5.4",
"typescript": "2.0.3"
Expand Down
23 changes: 11 additions & 12 deletions src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"compilerOptions": {
"baseUrl": "",
"declaration": false,
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": false,
"lib": ["es2015", "es6", "dom"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"moduleResolution": "node",
"outDir": "../",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
"removeComments": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"declaration": true,
"noEmitHelpers": false,
"outDir": "../"
},
"exclude": [
"node_modules"
Expand Down

0 comments on commit c00ef8a

Please sign in to comment.