From fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 13 Sep 2023 15:14:25 -0500 Subject: Initial commit Get the skeleton (hehe) started --- app/tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/tsconfig.json (limited to 'app/tsconfig.json') 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 +} -- cgit v1.2.3