summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authordarkuss <darkussdelta@gmail.com>2026-08-13 05:13:32 +0200
committerdarkuss <darkussdelta@gmail.com>2026-08-13 05:13:32 +0200
commit5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (patch)
treefd50520f319ec22798f8b3629899cd1bbef5af23 /tsconfig.json
init
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/*"]
+ }
+ }
+}