full hello world boilerplate

This commit is contained in:
2021-08-06 20:46:50 +02:00
parent 27430e4b2e
commit 294cd719c1
2 changed files with 2 additions and 4 deletions

View File

@@ -2,9 +2,7 @@ import App from './ui/App.svelte';
const app = new App({ const app = new App({
target: document.body, target: document.body,
props: { props: {},
scene: new PolycubeScene()
}
}); });
export default app; export default app;

View File

@@ -5,5 +5,5 @@
"target": "ESNext" "target": "ESNext"
}, },
"include": ["./src/**/*"], "include": ["./src/**/*"],
"exclude": ["./node_modules/*", "./__sapper__/*", "./public/*", "./src/solver/wasm/*"] "exclude": ["./node_modules/*", "./__sapper__/*"]
} }