Skip to content

Commit

Permalink
fix(nextjs-ts): silences incremental warning with typescript (proje…
Browse files Browse the repository at this point in the history
…n#1775)

```
    The following suggested values were added to your tsconfig.json. These values can be changed to fit your project's needs:
            - incremental was set to true
    ```
    
    The above should be gone now.
  • Loading branch information
pgollucci authored Apr 18, 2022
1 parent 795c996 commit 7aaa602
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/web/next.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export class NextJsTypeScriptProject extends TypeScriptAppProject {
lib: ["dom", "dom.iterable", "esnext"],
strict: false,
target: "es5",
incremental: true,
},
},
};
Expand Down
2 changes: 2 additions & 0 deletions test/web/__snapshots__/nextjs-ts-project.test.ts.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7aaa602

Please sign in to comment.