mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
13 lines
445 B
JSON
13 lines
445 B
JSON
// 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": {
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"types": ["node", "vite/client", "vite-plugin-pwa/client"],
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo"
|
|
}
|
|
}
|