Skip to content

Commit

Permalink
switch to @types for version 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Flori committed Nov 9, 2018
1 parent b7cbcb3 commit 3e1c385
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 14 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
coverage/*
docs/_site
/bundles
/typings
/src/**/*.js*
/src/**/*.d.ts
/index.*
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-translator",
"version": "2.4.2",
"version": "3.0.0-rc.2",
"description": "A translate-service, translate-pipe and translate-component for angular2",
"repository": {
"type": "git",
Expand All @@ -9,7 +9,6 @@
"scripts": {
"test": "karma start",
"tslint": "tslint -c tslint.json --exclude=\"**/*.d.ts\" --exclude=\"node_modules/**/*.ts\" \"**/*.ts\"",
"prepare": "typings install",
"prepublishOnly": "npm test && npm run build",
"coveralls": "cat coverage/lcov.info | coveralls",
"build": "tsc && ngc && webpack"
Expand Down Expand Up @@ -51,6 +50,9 @@
"@angular/http": "^7.0.3",
"@angular/platform-browser": "^7.0.3",
"@angular/platform-browser-dynamic": "^7.0.3",
"@types/es6-shim": "*",
"@types/jasmine": "^2.8.11",
"@types/node": "^10.12.3",
"awesome-typescript-loader": "^3.5.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "2.5.*",
Expand All @@ -70,7 +72,6 @@
"ts-helpers": "*",
"tslint": "^4.5.1",
"typescript": "^3.1.6",
"typings": "*",
"webpack": "^2.7.0",
"zone.js": "^0.8.26"
}
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
"experimentalDecorators": true,
"removeComments": false,
"declaration": true,
"noImplicitAny": false
"noImplicitAny": false,
"typeRoots": [
"node_modules/@types",
"typings"
]
},
"exclude": [
"node_modules"
Expand Down
9 changes: 0 additions & 9 deletions typings.json

This file was deleted.

File renamed without changes.

0 comments on commit 3e1c385

Please sign in to comment.