Skip to content

Commit

Permalink
refactor(tsconfig): remove composite option (#12)
Browse files Browse the repository at this point in the history
Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and nikkeyl authored Aug 17, 2024
1 parent 534d9ff commit 42e00b5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
// Type Checking
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"disableReferencedProjectLoad": true,
"exactOptionalPropertyTypes": true,
"noImplicitAny": true,
"noImplicitReturns": true,
Expand Down
18 changes: 12 additions & 6 deletions tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"composite": true,
// Completeness
"skipLibCheck": true,
// Emit
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "",
// Language and Environment
"lib": ["ESNext"],
"target": "ESNext",
// Modules
"allowImportingTsExtensions": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "",
"rootDir": "src",
"skipLibCheck": true,
"target": "ESNext",
"types": ["next", "vitest"]
"types": ["next", "vitest"],
// Projects
"disableReferencedProjectLoad": true
}
}

0 comments on commit 42e00b5

Please sign in to comment.