aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-12-07 17:50:56 +0100
committerMaksymilian Jopek <maks@jopek.eu>2022-12-07 17:50:56 +0100
commitb9f683fa36320fcdc08716c8303691e5cf7ce5cd (patch)
treed019dba364d4e435c0bc80414f64ef86dcfc56a5 /tsconfig.json
downloaddigit-single-b9f683fa36320fcdc08716c8303691e5cf7ce5cd.tar.gz
digit-single-b9f683fa36320fcdc08716c8303691e5cf7ce5cd.tar.zst
digit-single-b9f683fa36320fcdc08716c8303691e5cf7ce5cd.zip
Inital commit with v0.0.3
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..c4e1c5f
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,20 @@
+{
+ "extends": "@tsconfig/svelte/tsconfig.json",
+ "compilerOptions": {
+ "target": "ESNext",
+ "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
+ },
+ "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
+ "references": [{ "path": "./tsconfig.node.json" }]
+}