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:
authorJohannes Rieken <johannes.rieken@gmail.com>2017-11-23 14:04:44 +0300
committerJohannes Rieken <johannes.rieken@gmail.com>2017-11-23 14:04:59 +0300
commit795d3701bef15de77fd1329d471ed89d5aa28fde (patch)
tree06a57b42d56fe8ae955d6ee0cf1204d92a5f5298 /src/tsconfig.json
parent9ae69443fb7d2f1a491bff0760d0ed7d1001f942 (diff)
set outdir in tsconfig.json
Diffstat (limited to 'src/tsconfig.json')
-rw-r--r--src/tsconfig.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tsconfig.json b/src/tsconfig.json
index 2d516dd2313..e8f68d0088d 100644
--- a/src/tsconfig.json
+++ b/src/tsconfig.json
@@ -13,8 +13,9 @@
"noUnusedLocals": true,
"noImplicitThis": true,
"baseUrl": ".",
+ "outDir": "../out",
"typeRoots": [
"typings"
]
}
-} \ No newline at end of file
+}