diff --git a/src/template.html b/src/template.html
deleted file mode 100644
index 2dfecf6..0000000
--- a/src/template.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-    
-    
-    
-    
-
-    %sapper.base%
-
-     
-    
-    
-    
-
-    
-    
-
-    
-    
-
-    
-    %sapper.scripts%
-
-    
-    %sapper.styles%
-
-    
-    %sapper.head%
-
-    
-    
-    
-
-
-
-%sapper.html%
-
-
diff --git a/svelte.config.js b/svelte.config.js
index 913fc56..4776b25 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -1,12 +1,12 @@
 import adapter from "@sveltejs/adapter-static";
+import preprocess from 'svelte-preprocess';
 
 /** @type {import('@sveltejs/kit').Config} */
 const config = {
+	preprocess: preprocess(),
 	kit: {
-		// hydrate the  element in src/app.html
 		adapter: adapter({
-			pages: 'build',
-			// assets: 'static',
+			pages: 'build'
 		})
 	}
 };
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..32de996
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,13 @@
+{
+	// "extends": "./.svelte-kit/tsconfig.json",
+	"compilerOptions": {
+		"allowJs": true,
+		"checkJs": true,
+		"esModuleInterop": true,
+		"forceConsistentCasingInFileNames": true,
+		"resolveJsonModule": true,
+		"skipLibCheck": true,
+		"sourceMap": true,
+		"strict": true
+	}
+}