fix!(icons/app): removing the global ignore

- Changing the ts-ignore by ts-execpt-error because safer and more
specific
This commit is contained in:
Raphael 2025-09-28 22:31:28 +02:00
parent d5e7f57ef2
commit 6f42fe6929
No known key found for this signature in database

View file

@ -5,9 +5,9 @@ import { mkdir } from 'node:fs/promises';
import fp from 'fastify-plugin';
import * as db from '@shared/database';
// @ts-ignore: import.meta.glob is a vite thing. Typescript doesn't know this...
// @ts-except-error: import.meta.glob is a vite thing. Typescript doesn't know this...
const plugins = import.meta.glob('./plugins/**/*.ts', { eager: true });
// @ts-ignore: import.meta.glob is a vite thing. Typescript doesn't know this...
// @ts-except-error: import.meta.glob is a vite thing. Typescript doesn't know this...
const routes = import.meta.glob('./routes/**/*.ts', { eager: true });