From 77e36631f12efb4a4660e473cd47b546e61a990d Mon Sep 17 00:00:00 2001 From: Sam El-Husseini Date: Tue, 3 Sep 2019 16:56:01 -0700 Subject: [PATCH] Add jsconfig for intellisense (#2962) * Add jsconfig for intellisense --- jsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 000000000..ba31d905b --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "es5" + }, + "include": [ + "core/**/**/*", + "typings/blockly.d.ts" + ], + "exclude": [ + "node_modules" + ] +}