From 5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c Mon Sep 17 00:00:00 2001 From: darkuss Date: Thu, 13 Aug 2026 05:13:32 +0200 Subject: init --- tsconfig.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') 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/*"] + } + } +} -- cgit v1.2.3