Skip to content

Commit c425681

Browse files
author
Claus Reinke
committed
first steps towards supporting TS v1.4 (#39); still lots to do...
- builds and runs, with some commands working, some still missing; quick manual testing shows working: type,definition,references/occurences,completion,files - most tests fail at this point (often different details, not bugs) - depends on typescript v1.3-1985-g67476f1 (npm install locally, from github; despite the tag and package.json, that is a post-1.4.1 version)
1 parent 243b081 commit c425681

File tree

8 files changed

+2713
-60428
lines changed

8 files changed

+2713
-60428
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
TYPESCRIPT=../typescript
1+
TYPESCRIPT=node_modules/typescript
22
TSC=node $(TYPESCRIPT)/bin/tsc.js
3-
TYPESCRIPT_GIT=$(TYPESCRIPT)/.git
3+
TYPESCRIPT_LIB=$(TYPESCRIPT)/bin/
44
TEST_SCRIPTS=tests/*.script
55
TEST_SOURCES=tests/*.ts
66
VERSION=$(shell git describe --tags)
77

88
build: bin/tss.js bin/lib.d.ts tests/script.diff package.json tests/script.results
99

10-
bin/tss.js: tss.ts harness.ts $(TYPESCRIPT_GIT)
11-
$(TSC) tss.ts -target es5 -out bin/tss.js 2>&1 | tee build.log
10+
bin/tss.js: tss.ts harness.ts $(TYPESCRIPT)/bin/typescript.d.ts $(TYPESCRIPT)/bin/typescript_internal.d.ts
11+
$(TSC) tss.ts -target ES5 -m commonjs --noEmitOnError -outDir bin 2>&1 | tee build.log
1212
test ! -s build.log
1313

1414
bin/lib.d.ts: $(TYPESCRIPT)/bin/lib.d.ts

0 commit comments

Comments
 (0)