Files
custum-hyprpanel/tsconfig.json
Jas Singh a7b553725c Update meson (#647)
* Update meson

* update

* Use build_always_stale instead of manually defining files to track.

* Clean up tsconfig
2024-12-28 03:48:52 -08:00

25 lines
666 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": ["types", "src/lib/types"],
"skipLibCheck": true,
"types": [],
"experimentalDecorators": true,
"jsx": "react-jsx",
"jsxImportSource": "astal/gtk3"
}
}