diff options
Diffstat (limited to '')
| -rw-r--r-- | ags/tsconfig.json | 28 |
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", + } } |
