TypeScript Version: nightly (2.0.0-dev.20160630)
tsconfig.json
{
"include": [
"../app/**/*.ts"
]
}
Expected behavior:
Running tsc will compile all .ts files in ../app.
Actual behavior:
Running tsc does nothing.
NOTE
Specifying "files": [ "../app/someFile.ts" ] does work; it is just that "include" seems to ignore "..".
TypeScript Version: nightly (2.0.0-dev.20160630)
tsconfig.json
{ "include": [ "../app/**/*.ts" ] }Expected behavior:
Running
tscwill compile all.tsfiles in../app.Actual behavior:
Running
tscdoes nothing.NOTE
Specifying
"files": [ "../app/someFile.ts" ]does work; it is just that "include" seems to ignore "..".