ags/tsconfig.json
2025-02-06 12:05:55 +01:00

20 lines
500 B
JSON

{
"$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/*"]
}
}
}