diff --git a/modules/@angular/compiler_cli/integrationtest.sh b/modules/@angular/compiler_cli/integrationtest.sh index 86c88c6224..dc4cdc1c2a 100755 --- a/modules/@angular/compiler_cli/integrationtest.sh +++ b/modules/@angular/compiler_cli/integrationtest.sh @@ -5,7 +5,7 @@ set -e -o pipefail cd $(dirname $0) cd $(pwd)/../../.. export NODE_PATH=$NODE_PATH:$(pwd)/dist/all:$(pwd)/dist/tools -readonly TESTDIR="modules/@angular/compiler_cli/integrationtest" -rm $TESTDIR/src/*.{ngfactory,css.shim}.ts -node dist/all/@angular/compiler_cli/src/main -p $TESTDIR +readonly TESTDIR="@angular/compiler_cli/integrationtest" +rm -f modules/$TESTDIR/src/*.{ngfactory,css.shim}.ts +node dist/all/@angular/compiler_cli/src/main -p modules/$TESTDIR node dist/tools/cjs-jasmine -- $TESTDIR/**/*_spec.js diff --git a/modules/@angular/compiler_cli/integrationtest/tsconfig.json b/modules/@angular/compiler_cli/integrationtest/tsconfig.json index 9e5615fec1..62205e11cf 100644 --- a/modules/@angular/compiler_cli/integrationtest/tsconfig.json +++ b/modules/@angular/compiler_cli/integrationtest/tsconfig.json @@ -19,10 +19,5 @@ "paths": { "@angular/*": ["../../../../dist/all/@angular/*"] } - }, - - "files": [ - "src/bootstrap.ts", - "typings.d.ts" - ] + } }