aboutsummaryrefslogtreecommitdiffstats
path: root/old-apps/frontpage/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'old-apps/frontpage/tsconfig.json')
-rw-r--r--old-apps/frontpage/tsconfig.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/old-apps/frontpage/tsconfig.json b/old-apps/frontpage/tsconfig.json
new file mode 100644
index 0000000..374cec6
--- /dev/null
+++ b/old-apps/frontpage/tsconfig.json
@@ -0,0 +1,28 @@
+{
+ "include": [
+ "./**/*.d.ts",
+ "./**/*.ts",
+ "./**/*.js",
+ "./**/*.svelte"
+ ],
+ "exclude": [
+ "./node_modules"
+ ],
+ "extends": "./.svelte-kit/tsconfig.json",
+ "compilerOptions": {
+ "target": "esnext",
+ "useDefineForClassFields": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "allowJs": true,
+ "checkJs": false,
+ "paths": {
+ "$routes/*": [
+ "./src/pages/*"
+ ],
+ "$shared/*": [
+ "../web-shared/src/*"
+ ]
+ }
+ }
+}