1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: drop ts-scripts dependency
Author: Yadd <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2025-10-25
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,7 +1,14 @@
{
- "extends": "@borderless/ts-scripts/configs/tsconfig.json",
"compilerOptions": {
+ "declaration": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "inlineSources": true,
+ "isolatedModules": true,
"target": "ES2015",
+ "skipLibCheck": true,
+ "sourceMap": true,
+ "strict": true,
"lib": ["ES2015"],
"rootDir": "src",
"outDir": "dist",
|