fix(language-service): remove tsickle dependency

Removes the tsickle dependency added when tsickle was added to the
transform compiler.

Added a test to ensure stray dependencies are not added and no
errors are introduced during module flattening.
This commit is contained in:
Chuck Jazdzewski
2017-08-15 17:04:45 -07:00
committed by Hans
parent 75d484e29d
commit bc22ff1517
14 changed files with 77 additions and 9 deletions

View File

@ -9,6 +9,11 @@ source scripts/env.sh
HOST="node tools/typescript_host.js"
VALIDATE="node tools/typescript_validator.js"
# Ensure the languages service can load correctly in node before typescript loads it.
# This verifies its dependencies and emits any exceptions, both of which are only
# emitted to the typescript logs (not the validated output).
node tools/load_test.js
for TYPESCRIPT in ${TYPESCRIPTS[@]}
do
SERVER="node typescripts/$TYPESCRIPT/node_modules/typescript/lib/tsserver.js"