remove unneeded noEmit

already default true
This commit is contained in:
Mikael Finstad
2026-01-28 17:42:28 +08:00
parent 44b43a0347
commit 260128b314
2 changed files with 3 additions and 2 deletions
+3 -1
View File
@@ -6,17 +6,19 @@
"emitDeclarationOnly": true,
"outDir": "main-ts-dist",
"tsBuildInfoFile": "main-ts-dist/tsconfig.tsbuildinfo",
"lib": ["ES2024"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["vite/client"],
// https://nodejs.org/api/typescript.html
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
"types": ["vite/client"],
},
"references": [
{ "path": "./tsconfig.common.json" },
-1
View File
@@ -3,7 +3,6 @@
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"target": "esnext",
"noEmit": true,
"types": ["vite/client"],
},