Skip to content

Commit 1f66dcd

Browse files
committed
fix
1 parent c261526 commit 1f66dcd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Options.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import {
3232
compiler,
3333
options,
34-
OptionsProfile,
34+
type OptionsProfile,
3535
DEFAULT_PROFILE,
3636
NEWBIE_PROFILE,
3737
} from "./config_store";

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import "./app.css";
2-
// @ts-ignore
32
import App from "./App.svelte";
43

4+
// @ts-ignore
55
const app = new App({
66
target: document.body,
77
});

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"resolveJsonModule": true,
88
"strictNullChecks": true,
99
"baseUrl": ".",
10+
"isolatedModules": true,
1011
/**
1112
* Typecheck JS in `.svelte` and `.js` files by default.
1213
* Disable checkJs if you'd like to use dynamic types in JS.

0 commit comments

Comments
 (0)