mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 23:38:56 +00:00
a7cf34367d
- Add optional `nextVersion` field in package.json to override the auto-incremented patch version used for dev builds - In prod mode, automatically remove `nextVersion` field after release - Fix packages tsconfig.json: switch to `module/moduleResolution: nodenext`, remove unsupported `baseUrl` and `jsx` options Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
454 B
JSON
19 lines
454 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|