Skip to content

Commit

Permalink
fiddle tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
cnuss committed Jun 22, 2024
1 parent 3f4078f commit c783d4a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/bootstrap.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions cli/bootstrap.ts → src/bootstrap.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { log } from "../src/internal/log";
import { log } from "./internal/log";
import packageJson from "../package.json";
import { run } from "../src";
import { run } from ".";

(async () => {
if (process.argv.includes("--version")) {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"incremental": true,
"target": "ESNext",
"module": "Node16",
"rootDir": "./",
"rootDir": "./src",
"outDir": "./lib",
"declaration": true,

Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
mode: "production",

// entry files
entry: "./cli/bootstrap.ts",
entry: "./src/bootstrap.ts",

// output bundles (location)
output: {
Expand Down

0 comments on commit c783d4a

Please sign in to comment.