From e934bf62541ee343479fcca2a23f4938e531355f Mon Sep 17 00:00:00 2001 From: "Andy Xu(devdiv)" Date: Tue, 19 Sep 2017 13:11:29 +0800 Subject: [PATCH] add encoding settings in launch.json (#17) --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 770170b..c6e28a3 100644 --- a/package.json +++ b/package.json @@ -78,6 +78,11 @@ }, "description": "The source directories of the program.", "default": [] + }, + "encoding": { + "type": "string", + "description": "The file.encoding setting passed to the JVM launcher (if not specified, default value 'UTF-8' will be used, possible values can be found in http://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html).", + "default": "UTF-8" } } },