Move tsconfig.all.json out of src

This commit is contained in:
Daniel Imms
2019-05-31 18:14:10 -07:00
parent 7a0ed764bd
commit 96b96cfcf8
3 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -46,10 +46,10 @@
"test": "npm run test-unit",
"posttest": "npm run lint",
"test-api": "mocha \"**/*.api.js\"",
"build": "tsc -b ./src/tsconfig.all.json",
"build": "tsc -b ./tsconfig.all.json",
"prepare": "npm run build",
"prepublishOnly": "npm run package",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"watch": "tsc -b -w ./src/tsconfig.all.json --preserveWatchOutput"
"watch": "tsc -b -w ./tsconfig.all.json --preserveWatchOutput"
}
}
-14
View File
@@ -1,14 +0,0 @@
{
"files": [],
"include": [],
"references": [
{ "path": "." },
{ "path": "./addons/attach" },
{ "path": "./addons/fit" },
{ "path": "./addons/fullscreen" },
{ "path": "./addons/search" },
{ "path": "./addons/terminado" },
{ "path": "./addons/webLinks" },
{ "path": "./addons/zmodem" }
]
}
+14
View File
@@ -0,0 +1,14 @@
{
"files": [],
"include": [],
"references": [
{ "path": "./src" },
{ "path": "./src/addons/attach" },
{ "path": "./src/addons/fit" },
{ "path": "./src/addons/fullscreen" },
{ "path": "./src/addons/search" },
{ "path": "./src/addons/terminado" },
{ "path": "./src/addons/webLinks" },
{ "path": "./src/addons/zmodem" }
]
}