generated from archoleat/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(tsconfig): remove
composite
option (#12)
Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com>
- Loading branch information
1 parent
534d9ff
commit 42e00b5
Showing
2 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |