Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/tsconfig-reference/scripts/tsconfigRules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,11 @@ export const defaultsForOptions = {
"`ES6`/`ES2015` otherwise.",
],
moduleResolution: [
"`Classic` if [`module`](#module) is `AMD`, `UMD`, `System`, or `ES6`/`ES2015`;",
"Matches if [`module`](#module) is `node16` or `nodenext`;",
"`Node` otherwise.",
"`Node10` if [`module`](#module) is `CommonJS`;",
"`Node16` if [`module`](#module) is `Node16` or `Node18`;",
"`NodeNext` if [`module`](#module) is `NodeNext`;",
"`Preserve` if [`module`](#module) is `Bundler`;",
"`Classic` otherwise.",
],
newLine: "`lf`",
noImplicitAny: trueIf("strict"),
Expand Down
Loading