svelte boilerplate

This commit is contained in:
2021-08-06 20:40:42 +02:00
parent c11ad68acd
commit 27430e4b2e
5 changed files with 137 additions and 5 deletions

9
tsconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"lib": ["dom", "ESNext"],
"target": "ESNext"
},
"include": ["./src/**/*"],
"exclude": ["./node_modules/*", "./__sapper__/*", "./public/*", "./src/solver/wasm/*"]
}