mirror of
https://github.com/MultiMote/niimblue
synced 2026-01-19 19:37:11 +03:00
Squash summary: * Fix PrinterConnector loop keys * Remove unnecessary state * Add format-all script, remove esbuild override * Use localStorage key as SavedLabelsBrowser element key * Remove prettier.config.ts because .prettierrc.yml exists * Remove unused eslint plugins, migrate config * Change npm scripts * Fix state typing * Finish root path alias, range type * Get rid of "possibly undefined" errors * Replace $effect with $derived * Fix key errors * Replace legacy run() with $effect * Enable runes explicitly * Remove FabricConfig.disableStyleCopyPaste duplicate * Revert capacitor changes in base project * Revert .gitignore * Remove eslint comment * Revert dashboard to MainPage (not using kit, no routes)
31 lines
716 B
JSON
31 lines
716 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitOverride": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"module": "es2022",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": false,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUncheckedIndexedAccess": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"lib": ["dom", "dom.iterable", "es2022", "webworker"],
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"$/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"vite.config.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.ts",
|
|
"src/**/*.svelte"
|
|
]
|
|
}
|