We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c261526 commit 1f66dcdCopy full SHA for 1f66dcd
src/Options.svelte
@@ -31,7 +31,7 @@
31
import {
32
compiler,
33
options,
34
- OptionsProfile,
+ type OptionsProfile,
35
DEFAULT_PROFILE,
36
NEWBIE_PROFILE,
37
} from "./config_store";
src/main.ts
@@ -1,7 +1,7 @@
1
import "./app.css";
2
-// @ts-ignore
3
import App from "./App.svelte";
4
+// @ts-ignore
5
const app = new App({
6
target: document.body,
7
});
tsconfig.json
@@ -7,6 +7,7 @@
"resolveJsonModule": true,
8
"strictNullChecks": true,
9
"baseUrl": ".",
10
+ "isolatedModules": true,
11
/**
12
* Typecheck JS in `.svelte` and `.js` files by default.
13
* Disable checkJs if you'd like to use dynamic types in JS.
0 commit comments