Skip to content

Commit f764441

Browse files
committed
minor tweaks
1 parent b600d51 commit f764441

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"format": "prettier -w --list-different .",
8282
"debug": "rollup -c -w",
8383
"build": "rollup -c --forceExit",
84-
"compile": "tsc -p ./ --outDir out --sourceMap true --module commonjs --moduleResolution node --noEmit false",
84+
"compile": "tsc -p ./ --outDir out --sourceMap true --module commonjs --moduleResolution node",
8585
"pretest": "npm run build && npm run compile",
8686
"test": "node ./out/test/runTest.js",
8787
"coverage": "c8 --all --src out npm run test",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = {
2525
plugins: [
2626
nodeResolve({ preferBuiltins: true, browser: true }),
2727
commonjs(),
28-
typescript(),
28+
typescript({ noEmit: true }),
2929
!debug && terser(),
3030
],
3131
};

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"esModuleInterop": true,
88
"skipLibCheck": true,
99
"strict": true,
10-
"noEmit": true
10+
"noUnusedLocals": true
1111
},
1212
"include": ["src", "test"],
1313
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)