coquille/tsconfig.json
Anthony Rodriguez eb7c276914
feat: check for matcha availability
We want to check if matcha will be available both as a binary and as a
daemon, as it needs to be running in the background. If those are not
met, the idle inhibitor cannot be shown.
2025-02-16 13:05:34 +01:00

16 lines
353 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"experimentalDecorators": true,
"jsx": "react-jsx",
"jsxImportSource": "astal/gtk4",
"module": "ES2022",
"moduleResolution": "Bundler",
"strict": true,
"target": "ES2022",
"paths": {
"@": ["./src"],
"@/*": ["./src/*"]
}
}
}