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>2018-10-02 11:48:21 +0300
committerMatt Bierner <matb@microsoft.com>2018-10-02 20:24:20 +0300
commitfb51020ae3b06167f12f8255dcd17953726001f9 (patch)
tree3b98be3563f9e71ce00d20dad541ee4439c4d92a /src/tsconfig.json
parentc050c96b979ec68eb06fcb62cb828047d08d1a84 (diff)
Switch to use node module resolution
This is the modern form of module resolution recommend by typescript
Diffstat (limited to 'src/tsconfig.json')
-rw-r--r--src/tsconfig.json19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/tsconfig.json b/src/tsconfig.json
index 408cad4917b..9f8ead79d70 100644
--- a/src/tsconfig.json
+++ b/src/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "amd",
- "moduleResolution": "classic",
+ "moduleResolution": "node",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
@@ -15,13 +15,14 @@
"alwaysStrict": true,
"baseUrl": ".",
"outDir": "../out",
- "typeRoots": [
- "typings"
- ]
+ "paths": {
+ "vs/*": [
+ "./vs/*"
+ ]
+ }
},
- "exclude": [
- "../out",
- "../out-build",
- "../out-vscode"
+ "include": [
+ "./typings",
+ "./vs"
]
-}
+} \ No newline at end of file