From 996edf8e85cf69c515375f05cbcade41bb763882 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 17 Mar 2016 16:28:52 +0100 Subject: [PATCH] Fixes #2787: Salsa doesn't support AMD and we should warn users that AMD is not supported --- extensions/javascript/schemas/jsconfig.schema.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extensions/javascript/schemas/jsconfig.schema.json b/extensions/javascript/schemas/jsconfig.schema.json index 3c5df132995..c6ecd87b01d 100644 --- a/extensions/javascript/schemas/jsconfig.schema.json +++ b/extensions/javascript/schemas/jsconfig.schema.json @@ -29,10 +29,9 @@ "format": "uri" }, "module": { - "description": "Specify module code generation: 'CommonJS', 'Amd', 'System', 'UMD', 'es6', or 'es2015'.", + "description": "Specify used module type: 'commonjs', 'system', 'umd', 'es6', or 'es2015'. Note: 'amd' is currently not supported.", "enum": [ "commonjs", - "amd", "umd", "system", "es6",