* Eslint updates * linter fixes * Type fixes * More type fixes * Fix isvis * More type fixes * Type Fixes * Consolidate logic to manage options * Linter fixes * Package lock update * Update configs * Version checker * Debug pipeline * Package lock update * Update ci * Strict check * Revert ci * Eslint * Remove rule since it causes issues in CI * Actual matugen fix
24 lines
618 B
JSON
24 lines
618 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"lib": ["ES2022", "DOM"],
|
|
"moduleResolution": "Bundler",
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitThis": true,
|
|
"baseUrl": ".",
|
|
"skipLibCheck": true,
|
|
"types": [],
|
|
"experimentalDecorators": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "astal/gtk3"
|
|
}
|
|
}
|