Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Bierner <matb@microsoft.com>2017-02-08 04:12:47 +0300
committerGitHub <noreply@github.com>2017-02-08 04:12:47 +0300
commit22fdff9baf0747913772f6a787c49ddf91cf78a9 (patch)
tree97808a225145bbf87ea3b5c7717221cd7b0ee1a9 /src/tsconfig.json
parent42335c57f5eb206bff3724e10349c8538277976f (diff)
Use @types for a few d.ts files in src (#20157)
Diffstat (limited to 'src/tsconfig.json')
-rw-r--r--src/tsconfig.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tsconfig.json b/src/tsconfig.json
index 5a375328fa0..591cc3aa99d 100644
--- a/src/tsconfig.json
+++ b/src/tsconfig.json
@@ -9,6 +9,10 @@
"sourceMap": false,
"experimentalDecorators": true,
"declaration": true,
- "noImplicitReturns": true
+ "noImplicitReturns": true,
+ "typeRoots": [
+ "typings",
+ "../node_modules/@types"
+ ]
}
}