Skip to content

Commit

Permalink
Major semver to all of them
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Jun 27, 2023
1 parent 4fd7c96 commit f2fd2b6
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,10 @@ to start from a Node 18 + Strictest base config, you can install both

You can see the result of the combined configs via `tsc --showConfig`.

### What about `@tsconfig/esm`?

We deprecated it in favour of setting [module/moduleResolution](https://github.com/tsconfig/bases/pull/197) to node/bundler.

### Contributing

```sh
Expand Down
2 changes: 1 addition & 1 deletion bases/create-react-app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Create React App",

"_version": "2.0.0",

"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
Expand Down
1 change: 1 addition & 0 deletions bases/docusaurus.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Docusaurus v2",
"docs": "https://v2.docusaurus.io/docs/typescript-support",
"_version": "2.0.0",

"compilerOptions": {
"allowJs": true,
Expand Down
3 changes: 2 additions & 1 deletion bases/next.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"_version": "2.0.0",

"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
Expand Down
2 changes: 1 addition & 1 deletion bases/node-lts.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node LTS",
"_version": "2.0.0",
"_version": "18.1.0",
"compilerOptions": {
"lib": [
"es2023"
Expand Down
2 changes: 1 addition & 1 deletion bases/node18.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 18",

"_version": "18.1.0",
"_version": "18.2.0",

"compilerOptions": {
"lib": ["es2023"],
Expand Down
3 changes: 2 additions & 1 deletion bases/nuxt.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Nuxt",

"_version": "2.0.0",

"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
Expand Down
2 changes: 2 additions & 0 deletions bases/remix.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Remix",
"_version": "2.0.0",

"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"isolatedModules": true,
Expand Down

0 comments on commit f2fd2b6

Please sign in to comment.