i so want to see all ts

This commit is contained in:
lda
2026-04-12 02:22:00 +07:00 Unverified
parent a3389fa8a1
commit d2838ffdca
8 changed files with 67 additions and 9 deletions
+7 -2
View File
@@ -3,8 +3,12 @@
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"ignoreDeprecations": "5.0",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"]
},
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
@@ -14,5 +18,6 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}