From a8583327d68bef4d490545e0f1889676fe7004db Mon Sep 17 00:00:00 2001 From: Pranav C Date: Sat, 16 Oct 2021 20:29:39 +0530 Subject: [PATCH] chore: add jsonconfig, remove field option from dhared view Signed-off-by: Pranav C --- .../project/spreadsheet/public/xcTable.vue | 2 +- packages/nc-gui/jsconfig.json | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 packages/nc-gui/jsconfig.json diff --git a/packages/nc-gui/components/project/spreadsheet/public/xcTable.vue b/packages/nc-gui/components/project/spreadsheet/public/xcTable.vue index f3a69239bf..d170068898 100644 --- a/packages/nc-gui/components/project/spreadsheet/public/xcTable.vue +++ b/packages/nc-gui/components/project/spreadsheet/public/xcTable.vue @@ -72,7 +72,7 @@ Reload - + diff --git a/packages/nc-gui/jsconfig.json b/packages/nc-gui/jsconfig.json new file mode 100644 index 0000000000..29037a628a --- /dev/null +++ b/packages/nc-gui/jsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "~/*": ["./*"], + "@/*": ["./*"], + "~~/*": ["./*"], + "@@/*": ["./*"] + } + }, + "exclude": ["node_modules", ".nuxt", "dist"] +}