Skip to content

Commit 0ff9dc1

Browse files
authoredJul 21, 2024··
fix: deactivate n/no-unsupported-features/es-syntax in *.ts files (#353)
* fix: no `n/no-unsupported-features/es-syntax` * fix: follow up fix
1 parent 6711053 commit 0ff9dc1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎base-configs/node.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ export function nodeRules (cjs) {
3030
},
3131
},
3232
{
33-
name: '@voxpelli/additional/node/ts',
33+
name: '@voxpelli/additional/node/dts',
3434
files: ['**/*.ts'],
3535
rules: {
3636
// TODO: Remove when *.js files can be properly resolved from *.d.ts
3737
'n/no-missing-import': 'off',
38+
'n/no-unsupported-features/es-syntax': 'off',
3839
},
3940
},
4041
];

0 commit comments

Comments
 (0)
Please sign in to comment.