build: fix linter configuraion for TS examples
[poolifier.git] / .eslintrc.js
index 02782ad45cfeb9766eddf2c8e50bfaabb22e6372..a6b0c95ad2adf07f28549ea9ac5643d10332b01d 100644 (file)
@@ -115,9 +115,12 @@ module.exports = defineConfig({
     {
       files: ['examples/typescript/**/*.ts'],
       rules: {
-        // '@typescript-eslint/no-unsafe-argument': 'off',
+        'import/no-unresolved': 'off',
+        '@typescript-eslint/no-unsafe-argument': 'off',
         '@typescript-eslint/no-unsafe-call': 'off',
-        '@typescript-eslint/no-unsafe-assignment': 'off'
+        '@typescript-eslint/no-unsafe-assignment': 'off',
+        '@typescript-eslint/no-unsafe-member-access': 'off',
+        '@typescript-eslint/no-unnecessary-type-assertion': 'off'
       }
     },
     {