Skip to content

Commit

Permalink
build(bubblebench-sharedtree): use node16 module resolution (microsof…
Browse files Browse the repository at this point in the history
…t#20129)

Semi-automatic PR to switch to node16 module resolution
  • Loading branch information
DLehenbauer committed Mar 15, 2024
1 parent 0f632db commit 196ec59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
7 changes: 2 additions & 5 deletions examples/benchmarks/bubblebench/sharedtree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
Expand All @@ -38,7 +36,6 @@
"test": "npm run test:jest",
"test:jest": "jest",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest",
"tsc": "tsc",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
6 changes: 2 additions & 4 deletions examples/benchmarks/bubblebench/sharedtree/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
{
"extends": "@fluidframework/build-common/ts-common-config.json",
"extends": "../../../../common/build/build-common/tsconfig.node16.json",
"exclude": ["dist", "node_modules"],
"compilerOptions": {
"module": "esnext",
"lib": ["ESNext", "DOM"],
"outDir": "dist",
"jsx": "react",
"outDir": "./lib",
"types": [
"react",
"react-dom",
Expand Down

0 comments on commit 196ec59

Please sign in to comment.