From 51b43a2115a6b38bbaad67b203c2158a387b5588 Mon Sep 17 00:00:00 2001
From: Keisuke ANDO <g.kei0429@gmail.com>
Date: Tue, 27 May 2025 19:26:17 +0000
Subject: [PATCH] feat(links): added ofm option to style unresolved or broken links differently (#1992)
---
tsconfig.json | 18 +++++-------------
1 files changed, 5 insertions(+), 13 deletions(-)
diff --git a/tsconfig.json b/tsconfig.json
index ea8fd50..637d096 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,10 +1,6 @@
{
"compilerOptions": {
- "lib": [
- "esnext",
- "DOM",
- "DOM.Iterable"
- ],
+ "lib": ["esnext", "DOM", "DOM.Iterable"],
"experimentalDecorators": true,
"module": "esnext",
"target": "esnext",
@@ -15,16 +11,12 @@
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
"esModuleInterop": true,
"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