feat: add node.json config for NestJS, update react.json with Vite flags
All checks were successful
continuous-integration/drone/push Build is passing

- node.json: commonjs, decorators, node moduleResolution
- react.json: noEmit, allowImportingTsExtensions, moduleDetection
- Bump @vigdorov/typescript-config to 1.1.0

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 23:57:43 +03:00
parent e2a2a15087
commit d346c22c72
4 changed files with 24 additions and 9 deletions

View File

@ -78,14 +78,13 @@ export default react((configs) => [
```
```jsonc
// tsconfig.json — Node/NestJS-проект
// tsconfig.json — NestJS-проект
{
"extends": "@vigdorov/typescript-config/base",
"extends": "@vigdorov/typescript-config/node",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
"baseUrl": "./"
}
}
```