Initial commit

This commit is contained in:
2025-04-20 13:02:58 +02:00
commit 4269d6b0bc
40 changed files with 1381 additions and 0 deletions

19
ags/tsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"experimentalDecorators": true,
"strict": true,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"noEmit": true,
"baseUrl": ".",
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"jsxImportSource": "astal/gtk4",
"paths": {
"@/*": ["./*"],
"@lib/*": ["lib/*"]
}
}
}