npm create rsbuild@latest

This commit is contained in:
tymur999
2025-08-02 13:12:03 -05:00
commit c33e50a7a4
11 changed files with 154 additions and 0 deletions

10
eslint.config.mjs Normal file
View File

@@ -0,0 +1,10 @@
import js from '@eslint/js';
import globals from 'globals';
import ts from 'typescript-eslint';
export default [
{ languageOptions: { globals: globals.browser } },
js.configs.recommended,
...ts.configs.recommended,
{ ignores: ['dist/'] },
];