From fcc7a9157c2c63e86bb6e93558a3a228ff8faa3f Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Mon, 8 Sep 2025 19:20:16 +0200 Subject: Rewrite whole project in svelte for better accessibility Signed-off-by: Filip Wandzio --- tsconfig.app.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tsconfig.app.json (limited to 'tsconfig.app.json') diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..d9387fd --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,20 @@ +{ + "extends": "@tsconfig/svelte/tsconfig.json", + "compilerOptions": { + "target": "ES2022", + "useDefineForClassFields": true, + "module": "ESNext", + "resolveJsonModule": true, + /** + * Typecheck JS in `.svelte` and `.js` files by default. + * Disable checkJs if you'd like to use dynamic types in JS. + * Note that setting allowJs false does not prevent the use + * of JS in `.svelte` files. + */ + "allowJs": true, + "checkJs": true, + "isolatedModules": true, + "moduleDetection": "force" + }, + "include": ["src/**/*.ts", "src/**/*.js", "src/**/*.svelte"] +} -- cgit v1.2.3