aboutsummaryrefslogtreecommitdiff
path: root/ags/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'ags/tsconfig.json')
-rw-r--r--ags/tsconfig.json28
1 files changed, 12 insertions, 16 deletions
diff --git a/ags/tsconfig.json b/ags/tsconfig.json
index 6860767..9471e35 100644
--- a/ags/tsconfig.json
+++ b/ags/tsconfig.json
@@ -1,18 +1,14 @@
{
- "compilerOptions": {
- "target": "ES2022",
- "module": "ES2022",
- "lib": [
- "ES2022"
- ],
- "allowJs": true,
- "checkJs": true,
- "strict": true,
- "noImplicitAny": false,
- "baseUrl": ".",
- "typeRoots": [
- "./types"
- ],
- "skipLibCheck": true
- }
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "compilerOptions": {
+ "experimentalDecorators": true,
+ "strict": true,
+ "target": "ES2022",
+ "module": "ES2022",
+ "moduleResolution": "Bundler",
+ // "checkJs": true,
+ // "allowJs": true,
+ "jsx": "react-jsx",
+ "jsxImportSource": "astal/gtk3",
+ }
}