* Fixed an issue that would cause the scroll direction to be inverted on secondary monitors. * Update import paths and tsconfig.
25 lines
657 B
JSON
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"
|
|
}
|
|
}
|