summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..be6410d
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,24 @@
+{
+ "extends": "@tsconfig/recommended/tsconfig.json",
+
+ "compilerOptions": {
+ "target": "es2020",
+ "module": "es2020",
+ "moduleResolution": "bundler",
+ "experimentalDecorators": true,
+ "useDefineForClassFields": false,
+ "noImplicitOverride": true,
+ "types": [],
+ "lib": ["es2020", "dom"],
+ "incremental": true,
+ "skipDefaultLibCheck": true,
+ "allowSyntheticDefaultImports": true,
+ "allowImportingTsExtensions": true,
+ "allowJs": true,
+ "jsx": "preserve",
+ "jsxImportSource": "preact",
+ "paths": {
+ "$/*": ["./src/*"]
+ }
+ }
+}