From b1175e61cfc63a99893c98ed2c52d7546ec07f92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Steitz?= Date: Sat, 18 Feb 2017 01:29:15 +0100 Subject: [PATCH] Add configuration options --- package.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/package.json b/package.json index 130c30a..5b1e1f8 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,21 @@ "activationEvents": [ "onLanguage:php" ], + "contributes": { + "configuration": { + "type": "object", + "title": "PHP IntelliSense", + "properties": { + "php.intellisense.fileTypes": { + "type": "array", + "default": [ + ".php" + ], + "description": "An array of file types which should be indexed by the language server." + } + } + } + }, "main": "./out/extension", "scripts": { "compile": "tsc -p .",