Skip to content

Commit

Permalink
more explicit build settings
Browse files Browse the repository at this point in the history
  • Loading branch information
erhant committed Dec 18, 2023
1 parent 22b6c2b commit 67a48ff
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 21 deletions.
14 changes: 0 additions & 14 deletions .vscode/settings.json

This file was deleted.

14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,19 @@
"targets": {
"cjs": {
"outputFormat": "commonjs",
"isLibrary": true,
"context": "node"
"isLibrary": false,
"context": "node",
"scopeHoist": false,
"includeNodeModules": false,
"optimize": false
},
"mjs": {
"outputFormat": "esmodule",
"isLibrary": true,
"context": "node"
"isLibrary": false,
"context": "node",
"scopeHoist": false,
"includeNodeModules": false,
"optimize": false
}
},
"engines": {
Expand Down
3 changes: 0 additions & 3 deletions src/base/admin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ export class Admin<M extends ContractMode = ContractMode> {
});
}

// TODO: transfer ownership
// remove yourself from whitelists and such

/**
* Changes the whitelist for the selected list.
* @param users an array of user addresses
Expand Down

0 comments on commit 67a48ff

Please sign in to comment.