fix(): eslint setup

This commit is contained in:
tiagosiebler
2024-11-08 13:04:41 +00:00
parent f685dc1bf7
commit 7023b0aa75
6 changed files with 106 additions and 91 deletions

17
tsconfig.linting.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
// "outDir": "dist/cjs",
"target": "esnext",
"rootDir": "../",
"allowJs": true
},
"include": [
"src/**/*.*",
"test/**/*.*",
"examples/**/*.*",
".eslintrc.cjs",
"jest.config.ts"
]
}