From 2bcaa1926a9997162faf3506305f03f6e436af61 Mon Sep 17 00:00:00 2001 From: antelle Date: Mon, 16 Sep 2019 18:34:58 +0200 Subject: [PATCH] jsconfig for vscode --- jsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 00000000..b0711c25 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "esnext", + "baseUrl": "app", + "paths": { + "templates/*": [ + "templates/*" + ], + "*": [ + "scripts", + "styles", + "resources" + ] + } + }, + "exclude": [ + "node_modules" + ] +}