* Implement strict typing (WIP). * changes * Finish type checks * Fix notification icon, matugen settings and update tsconfig. * OSD Styling updates and added the ability to configure OSD duration.
25 lines
551 B
JSON
25 lines
551 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"lib": [
|
|
"ES2022"
|
|
],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitThis": true,
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"types",
|
|
"lib/types/globals",
|
|
],
|
|
"skipLibCheck": true,
|
|
}
|
|
}
|