Skip to content

Commit c783d4a

Browse files
committed
fiddle tsconfig
1 parent 3f4078f commit c783d4a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/bootstrap.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/bootstrap.ts renamed to src/bootstrap.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { log } from "../src/internal/log";
1+
import { log } from "./internal/log";
22
import packageJson from "../package.json";
3-
import { run } from "../src";
3+
import { run } from ".";
44

55
(async () => {
66
if (process.argv.includes("--version")) {

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"incremental": true,
66
"target": "ESNext",
77
"module": "Node16",
8-
"rootDir": "./",
8+
"rootDir": "./src",
99
"outDir": "./lib",
1010
"declaration": true,
1111

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
mode: "production",
1515

1616
// entry files
17-
entry: "./cli/bootstrap.ts",
17+
entry: "./src/bootstrap.ts",
1818

1919
// output bundles (location)
2020
output: {

0 commit comments

Comments
 (0)