aboutsummaryrefslogtreecommitdiffstats
path: root/app/tsconfig.json
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2023-09-13 15:14:25 -0500
committerMatt Strapp <matt@mattstrapp.net>2023-09-13 15:22:38 -0500
commitfe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce (patch)
treefdded80b264dcd8576dd4735c2c8a80806103040 /app/tsconfig.json
downloadtrinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar
trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.gz
trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.bz2
trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.lz
trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.xz
trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.zst
trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.zip
Initial commit
Get the skeleton (hehe) started
Diffstat (limited to '')
-rw-r--r--app/tsconfig.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/tsconfig.json b/app/tsconfig.json
new file mode 100644
index 0000000..6ae0c8c
--- /dev/null
+++ b/app/tsconfig.json
@@ -0,0 +1,17 @@
+{
+ "extends": "./.svelte-kit/tsconfig.json",
+ "compilerOptions": {
+ "allowJs": true,
+ "checkJs": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "sourceMap": true,
+ "strict": true
+ }
+ // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
+ //
+ // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
+ // from the referenced tsconfig.json - TypeScript does not merge them in
+}