Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-08-20 12:32:20 +0300
committerJulius Härtl <jus@bitgrid.net>2019-08-26 12:21:21 +0300
commit0066319148f8f7f89241808560371287d0db7ee8 (patch)
tree7980f4cd0e8df6f803787896e42d3897ea6d8b58 /tsconfig.json
parentbcb26b0a54844552ad991e58068b50631724ddf5 (diff)
Exclude vendor from typescript
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 0bfb09e3..99c6e6c0 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -7,5 +7,9 @@
"target": "es5",
"jsx": "react",
"allowJs": true
- }
+ },
+ "exclude": [
+ "node_modules",
+ "vendor"
+ ]
}