fixing generation of incorrect package, typings and tsconfig

This commit is contained in:
Kristof Vrolijkx
2016-04-27 23:11:39 +02:00
parent c91f23c2ca
commit fbbcdab439
10 changed files with 2637 additions and 9 deletions

View File

@@ -14,7 +14,7 @@
},
"devDependencies": {
"typescript": "^1.8.10",
"typings": "^0.8.1",
"typings": "^0.8.1"
}{{#npmRepository}},
"publishConfig":{
"registry":"{{npmRepository}}"

View File

@@ -1,13 +1,17 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"target": "ES5"
"module": "commonjs",
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"target": "ES5",
"moduleResolution": "node",
"removeComments": true,
"sourceMap": true,
"noLib": false,
"declaration": true
},
"files": [
"api.ts",
"client.ts",
"typings/main.d.ts"
]
}

View File

@@ -1,5 +1,10 @@
{
"ambientDependencies": {
"core-js": "registry:dt/core-js#0.0.0+20160317120654"
}
"ambientDependencies": {
"bluebird": "registry:dt/bluebird#2.0.0+20160319051630",
"core-js": "registry:dt/core-js#0.0.0+20160317120654",
"node": "registry:dt/node#4.0.0+20160423143914"
},
"dependencies": {
"request": "registry:npm/request#2.69.0+20160304121250"
}
}