build: remove tsconfig.eslint.json

This commit is contained in:
Alfi Maulana 2023-12-11 19:34:27 +07:00
parent 2e9ab09ece
commit a487ef2d17
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4
3 changed files with 2 additions and 7 deletions

View File

@ -11,7 +11,7 @@
"extends": ["plugin:@typescript-eslint/recommended"], "extends": ["plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser", "parser": "@typescript-eslint/parser",
"parserOptions": { "parserOptions": {
"project": ["tsconfig.eslint.json"] "project": ["tsconfig.json"]
}, },
"plugins": ["@typescript-eslint", "eslint-plugin-tsdoc"], "plugins": ["@typescript-eslint", "eslint-plugin-tsdoc"],
"rules": { "rules": {

View File

@ -1,4 +0,0 @@
{
"extends": "./tsconfig.json",
"exclude": []
}

View File

@ -12,6 +12,5 @@
"target": "ES2022", "target": "ES2022",
"skipLibCheck": true "skipLibCheck": true
}, },
"include": ["src"], "include": ["src"]
"exclude": ["**/*.test.*"]
} }