chore(config): updated tsconfig

This commit is contained in:
2026-04-09 02:05:52 +02:00
parent b999e84b15
commit 6f99de8ec3
5 changed files with 1526 additions and 1460 deletions
+9 -6
View File
@@ -1,9 +1,12 @@
// TSConfig for modules that run in Node.js environment via either transpilation or type-stripping.
{
"extends": "@tsconfig/node24/tsconfig.json",
"include": ["vite.config.*", "eslint.config.*"],
"compilerOptions": {
"composite": true,
"module": "nodenext",
"moduleResolution": "nodenext",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts"]
"module": "preserve",
"moduleResolution": "bundler",
"types": ["node", "vite/client", "vite-plugin-pwa/client"],
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo"
}
}