Skip to content

Commit

Permalink
es2022
Browse files Browse the repository at this point in the history
  • Loading branch information
jtbandes committed Nov 15, 2023
1 parent 290f57b commit 2109227
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
3 changes: 2 additions & 1 deletion typescript/benchmarks/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"noEmit": true,
"rootDir": "..",
"outDir": "./dist/esm",
"lib": ["es2020", "dom"],
"target": "es2022",
"lib": ["es2022", "dom"],
"paths": {
"@mcap/core": ["../core/src"]
},
Expand Down
4 changes: 3 additions & 1 deletion typescript/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"compilerOptions": {
"rootDir": ".",
"outDir": "./dist/esm",
"lib": ["es2020", "dom"]
"module": "es2022",
"target": "es2022",
"lib": ["es2022", "dom"]
}
}
3 changes: 2 additions & 1 deletion typescript/examples/bag2mcap/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"noEmit": true,
"rootDir": "../..",
"outDir": "./dist/esm",
"lib": ["es2020", "dom"],
"target": "es2022",
"lib": ["es2022", "dom"],
"paths": {
"@mcap/core": ["../../core/src"]
},
Expand Down
3 changes: 2 additions & 1 deletion typescript/examples/basicwriter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"noEmit": true,
"rootDir": "../..",
"outDir": "./dist/esm",
"lib": ["es2020", "dom"],
"target": "es2022",
"lib": ["es2022", "dom"],
"paths": {
"@mcap/core": ["../../core/src"]
},
Expand Down
3 changes: 2 additions & 1 deletion typescript/examples/flatbufferswriter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"noEmit": true,
"rootDir": "../..",
"outDir": "./dist/esm",
"lib": ["es2020", "dom"],
"target": "es2022",
"lib": ["es2022", "dom"],
"paths": {
"@mcap/core": ["../../core/src"]
},
Expand Down
3 changes: 2 additions & 1 deletion typescript/examples/text-annotation-demo/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"noEmit": true,
"rootDir": "../..",
"outDir": "./dist/esm",
"lib": ["es2020", "dom"],
"target": "es2022",
"lib": ["es2022", "dom"],
"paths": {
"@mcap/core": ["../../core/src"]
},
Expand Down
3 changes: 2 additions & 1 deletion typescript/examples/validate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"noEmit": true,
"rootDir": "../..",
"outDir": "./dist/esm",
"lib": ["es2020", "dom"],
"target": "es2022",
"lib": ["es2022", "dom"],
"paths": {
"@mcap/core": ["../../core/src"]
},
Expand Down

0 comments on commit 2109227

Please sign in to comment.