Exclude test from eslint checking since it always was excluded, and I can't get it to check

This commit is contained in:
Andy Balaam
2023-02-23 17:10:06 +00:00
parent 26a308d8c6
commit f960700a2a
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -7,12 +7,12 @@
"target": "es2016",
"sourceMap": false,
"outDir": "./lib",
"rootDir": ".",
"rootDir": "./src",
"declaration": true,
"typeRoots": ["src/@types", "node_modules/@types"],
"lib": ["es2019", "dom"],
"types": ["jest", "node"],
"types": ["node"],
"strict": true
},
"include": ["./src/**/*.ts", "./test/**/*.ts"]
"include": ["./src/**/*.ts"]
}