refctor(tsconfig): force moduleDetection

As suggested in https://github.com/typescript-eslint/typescript-eslint/issues/6337

All our files are modules, there is no CJS, so this should be safe to enable regardless and might find in the future potential problems in case some CJS code is wrongly added

Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
This commit is contained in:
Fernando Fernández 2024-06-13 09:26:27 +02:00
parent eb5efcfdd4
commit 4257584677
No known key found for this signature in database
GPG Key ID: 82FD36644F1F4D3B

View File

@ -10,6 +10,7 @@
"skipLibCheck": true,
"noEmit": true,
"isolatedModules": true,
"moduleDetection": "force",
"useDefineForClassFields": true,
"noImplicitThis": true,
"noImplicitAny": true,