From 9fe1becf56d85ac19cd2b52fbb6e9048b875284b Mon Sep 17 00:00:00 2001 From: Wout Mertens Date: Sun, 26 Apr 2020 04:26:39 +0200 Subject: [PATCH] tslint: add jsconfig.json This enables IntelliSense on VS Code --- jsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 000000000..b76cd6b29 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, + "baseUrl": ".", + "jsx": "preserve", + "checkJs": true + }, + "exclude": ["node_modules", "build", "assets"] +}