From 8fd75ffbfda30edd5a134a1fbf9b81ac3cebb2ff Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 24 Jul 2023 00:42:00 +0000
Subject: [PATCH] support attachments folder
---
tsconfig.json | 17 ++++-------------
1 files changed, 4 insertions(+), 13 deletions(-)
diff --git a/tsconfig.json b/tsconfig.json
index d71eecb..784ab23 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,10 +1,7 @@
{
"compilerOptions": {
- "lib": [
- "esnext",
- "DOM",
- "DOM.Iterable"
- ],
+ "lib": ["esnext", "DOM", "DOM.Iterable"],
+ "experimentalDecorators": true,
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
@@ -18,12 +15,6 @@
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
- "include": [
- "**/*.ts",
- "**/*.tsx",
- "./package.json"
- ],
- "exclude": [
- "build/**/*.d.ts"
- ]
+ "include": ["**/*.ts", "**/*.tsx", "./package.json"],
+ "exclude": ["build/**/*.d.ts"]
}
--
Gitblit v1.10.0