mirror of
https://github.com/Spythere/pragotron-td2.git
synced 2026-05-03 13:38:14 +00:00
13 lines
385 B
JSON
13 lines
385 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.*"],
|
|
"compilerOptions": {
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"types": ["node"],
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo"
|
|
}
|
|
}
|