From 4197cd4af3478235bf853bf28d040e0592428259 Mon Sep 17 00:00:00 2001 From: basarat Date: Mon, 9 Feb 2015 20:55:17 +1100 Subject: [PATCH] added link to clarify that `tsconfig` is an official standard refs #67 --- docs/tsconfig.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tsconfig.md b/docs/tsconfig.md index 330f43153..acf8526dc 100644 --- a/docs/tsconfig.md +++ b/docs/tsconfig.md @@ -1,5 +1,5 @@ # `tsconfig.json` -A unified project format for TypeScript. The TypeScript compiler (`1.4` and above) only cares about `compilerOptions` and `files`. We add additional features to this: +A unified project format for TypeScript ([see merged PR on Microsoft/TypeScript](https://github.com/Microsoft/TypeScript/pull/1692)). The TypeScript compiler (`1.4` and above) only cares about `compilerOptions` and `files`. We add additional features to this: * `filesGlob`: To make it easier for you to just add / remove files in your project we add `filesGlob` which accepts an array of `glob / minimatch / RegExp` patterns (similar to grunt) to specify source files.