build(eslint): add tsconfig for all linted files

This commit is contained in:
Alois Klink
2024-06-28 22:59:03 +09:00
parent 14622b0386
commit 0ba712f53c
6 changed files with 48 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": ["./tsconfig.json"],
"compilerOptions": {
"noEmit": true
},
"include": [
"./src/**/*.spec.js",
"./src/**/*.spec.ts" // test files
]
}