Files
custum-hyprpanel/tsconfig.json
Jas Singh 210d5e2a5e Fixed an issue that would cause the scroll direction to be inverted on secondary monitors. (#683)
* Fixed an issue that would cause the scroll direction to be inverted on secondary monitors.

* Update import paths and tsconfig.
2024-12-31 03:20:47 -08:00

25 lines
657 B
JSON

{
"compilerOptions": {
"noEmit": true,
"allowImportingTsExtensions": true,
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "DOM"],
"moduleResolution": "Bundler",
"allowJs": true,
"checkJs": false,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"alwaysStrict": true,
"noImplicitThis": true,
"baseUrl": ".",
"typeRoots": ["src/lib/types"],
"skipLibCheck": true,
"types": [],
"experimentalDecorators": true,
"jsx": "react-jsx",
"jsxImportSource": "astal/gtk3"
}
}