added tests for <reference path="" static='' />

This commit is contained in:
Adam Freidin 2014-08-11 16:34:31 -07:00
parent 988cec595d
commit 5e2316d642
3 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
"scenario": "Reference-path-static",
"projectRoot": "tests/cases/projects/reference-path-static",
"inputFiles": [
"test.ts"
]
}

View file

@ -0,0 +1,3 @@
module Lib {
export class LibType {}
}

View file

@ -0,0 +1,3 @@
/// <reference path="lib.ts" static='true' />
var libType: Lib.LibType;