build: remove dependency on tsd and use @types/* instead
This commit is contained in:
@ -1,2 +1,2 @@
|
||||
/// <reference path="../../../../typings/node/node.d.ts" />
|
||||
/// <reference path="../../../../typings/jasmine/jasmine.d.ts" />
|
||||
/// <reference path="../../../../node_modules/@types/node/index.d.ts" />
|
||||
/// <reference path="../../../../node_modules/@types/jasmine/index.d.ts" />
|
||||
|
@ -27,8 +27,8 @@
|
||||
"files": [
|
||||
"index.ts",
|
||||
"src/main.ts",
|
||||
"../../../typings/node/node.d.ts",
|
||||
"../../../typings/jasmine/jasmine.d.ts",
|
||||
"../../../node_modules/@types/node/index.d.ts",
|
||||
"../../../node_modules/@types/jasmine/index.d.ts",
|
||||
"../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
]
|
||||
}
|
||||
|
@ -23,7 +23,6 @@
|
||||
"files": [
|
||||
"index.ts",
|
||||
"testing.ts",
|
||||
"../../../typings/jasmine/jasmine.d.ts",
|
||||
"../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
]
|
||||
}
|
||||
|
@ -12,7 +12,6 @@
|
||||
"moduleResolution": "node",
|
||||
"outDir": "../../../dist/packages-dist/platform-browser/esm",
|
||||
"paths": {
|
||||
"selenium-webdriver": ["./typings/selenium-webdriver/selenium-webdriver.d.ts"],
|
||||
"@angular/core": ["../../../dist/packages-dist/core"],
|
||||
"@angular/core/testing": ["../../../dist/packages-dist/core/testing"],
|
||||
"@angular/common": ["../../../dist/packages-dist/common"],
|
||||
@ -28,9 +27,9 @@
|
||||
"files": [
|
||||
"index.ts",
|
||||
"testing.ts",
|
||||
"../../../typings/jasmine/jasmine.d.ts",
|
||||
"../../../typings/hammerjs/hammerjs.d.ts",
|
||||
"../../../typings/angular-protractor/angular-protractor.d.ts",
|
||||
"../../../node_modules/@types/hammerjs/index.d.ts",
|
||||
"../../../node_modules/@types/protractor/index.d.ts",
|
||||
"../../../node_modules/@types/jasmine/index.d.ts",
|
||||
"../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
]
|
||||
}
|
||||
|
@ -12,7 +12,6 @@
|
||||
"moduleResolution": "node",
|
||||
"outDir": "../../../dist/packages-dist/platform-browser/",
|
||||
"paths": {
|
||||
"selenium-webdriver": ["./typings/selenium-webdriver/selenium-webdriver.d.ts"],
|
||||
"@angular/core": ["../../../dist/packages-dist/core"],
|
||||
"@angular/core/testing": ["../../../dist/packages-dist/core/testing"],
|
||||
"@angular/common": ["../../../dist/packages-dist/common"],
|
||||
@ -29,9 +28,9 @@
|
||||
"files": [
|
||||
"index.ts",
|
||||
"testing.ts",
|
||||
"../../../typings/hammerjs/hammerjs.d.ts",
|
||||
"../../../typings/angular-protractor/angular-protractor.d.ts",
|
||||
"../../../typings/jasmine/jasmine.d.ts",
|
||||
"../../../node_modules/@types/hammerjs/index.d.ts",
|
||||
"../../../node_modules/@types/protractor/index.d.ts",
|
||||
"../../../node_modules/@types/jasmine/index.d.ts",
|
||||
"../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
]
|
||||
}
|
||||
|
@ -24,7 +24,7 @@
|
||||
},
|
||||
"files": [
|
||||
"index.ts",
|
||||
"../../../typings/node/node.d.ts",
|
||||
"../../../node_modules/@types/node/index.d.ts",
|
||||
"../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
]
|
||||
}
|
||||
|
@ -25,7 +25,7 @@
|
||||
},
|
||||
"files": [
|
||||
"index.ts",
|
||||
"../../../typings/node/node.d.ts",
|
||||
"../../../node_modules/@types/node/index.d.ts",
|
||||
"../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
]
|
||||
}
|
||||
|
@ -14,7 +14,5 @@
|
||||
},
|
||||
"files": [
|
||||
"hello_world.ts"
|
||||
//"../typings/es6-collections/es6-collections.d.ts",
|
||||
//"../typings/es6-promise/es6-promise.d.ts"
|
||||
]
|
||||
}
|
||||
|
@ -11,7 +11,7 @@
|
||||
"moduleResolution": "node",
|
||||
"outDir": "../dist/all/",
|
||||
"paths": {
|
||||
"selenium-webdriver": ["./@angular/typings/selenium-webdriver/selenium-webdriver.d.ts"],
|
||||
"selenium-webdriver": ["../node_modules/@types/selenium-webdriver/index.d.ts"],
|
||||
"rxjs/*": ["../node_modules/rxjs/*"],
|
||||
"@angular/*": ["./@angular/*"],
|
||||
"tsc-wrapped": ["../dist/tools/tsc-wrapped"]
|
||||
|
10
modules/types.d.ts
vendored
10
modules/types.d.ts
vendored
@ -1,8 +1,8 @@
|
||||
// This file contains all ambient imports needed to compile the modules/ source code
|
||||
|
||||
/// <reference path="../typings/hammerjs/hammerjs.d.ts" />
|
||||
/// <reference path="../typings/jasmine/jasmine.d.ts" />
|
||||
/// <reference path="../typings/node/node.d.ts" />
|
||||
/// <reference path="../typings/selenium-webdriver/selenium-webdriver.d.ts" />
|
||||
/// <reference path="../typings/angular-protractor/angular-protractor.d.ts" />
|
||||
/// <reference path="../node_modules/zone.js/dist/zone.js.d.ts" />
|
||||
/// <reference path="../node_modules/@types/hammerjs/index.d.ts" />
|
||||
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
|
||||
/// <reference path="../node_modules/@types/node/index.d.ts" />
|
||||
/// <reference path="../node_modules/@types/protractor/index.d.ts" />
|
||||
/// <reference path="../node_modules/@types/selenium-webdriver/index.d.ts" />
|
||||
|
Reference in New Issue
Block a user