Skip to content

Commit

Permalink
Cleaning up some debug leftover
Browse files Browse the repository at this point in the history
  • Loading branch information
kraenhansen committed Jan 9, 2023
1 parent ccc36e0 commit 508d0a3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions packages/realm/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ export default [
},
}),
typescript({
tsconfig: "tsconfig.node.json",
tsconfig: "src/node/tsconfig.json",
}),
],
external: ["node:module", "node:fs", "undici", "bson", "debug"],
external: ["bson", "debug", "node:module", "node:fs", "undici"],
},
{
input: "src/react-native/index.ts",
Expand All @@ -53,7 +53,7 @@ export default [
},
plugins: [
typescript({
tsconfig: "tsconfig.react-native.json",
tsconfig: "src/react-native/tsconfig.json",
}),
],
external: ["bson", "debug"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"extends": "./tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"types": ["node"],
"noResolve": false,
"incremental": true
},
"exclude": [
"src/tests/",
"type-tests/",
"src/react-native/"
"../tests/",
"../react-native/",
"../../type-tests/"
],
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"extends": "./tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"noResolve": false,
"incremental": true
},
"exclude": [
"src/tests/",
"type-tests/",
"src/node/"
"../tests/",
"../node/",
"../../type-tests/"
],
}
1 change: 0 additions & 1 deletion packages/realm/src/tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"noResolve": false,
"hhehhe": "fkjdf",
"strictFunctionTypes": false,
"types": [
"mocha",
Expand Down

0 comments on commit 508d0a3

Please sign in to comment.