From 294cd719c1d5f653362a61eec2f54c9865b62864 Mon Sep 17 00:00:00 2001 From: dLedda Date: Fri, 6 Aug 2021 20:46:50 +0200 Subject: [PATCH] full hello world boilerplate --- src/main.ts | 4 +--- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main.ts b/src/main.ts index e8236ee..7f21aa3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,9 +2,7 @@ import App from './ui/App.svelte'; const app = new App({ target: document.body, - props: { - scene: new PolycubeScene() - } + props: {}, }); export default app; \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 062b0b4..ba6e911 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,5 +5,5 @@ "target": "ESNext" }, "include": ["./src/**/*"], - "exclude": ["./node_modules/*", "./__sapper__/*", "./public/*", "./src/solver/wasm/*"] + "exclude": ["./node_modules/*", "./__sapper__/*"] } \ No newline at end of file