mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix(commons): remove redundant tsconfig for eslint
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
352de8e7b9
commit
9ccfaf3d0e
5 changed files with 3 additions and 9 deletions
|
@ -8,7 +8,7 @@ module.exports = {
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"project": [
|
"project": [
|
||||||
"./tsconfig-eslint.json"
|
"./tsconfig.json"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"plugins": [
|
"plugins": [
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
"moduleNameMapper" : {
|
"moduleNameMapper" : {
|
||||||
"^(\\.{1,2}/.*)\\.js$" : "$1"
|
"^(\\.{1,2}/.*)\\.js$" : "$1"
|
||||||
},
|
},
|
||||||
|
"transformIgnorePatterns": ["<rootDir>/node_modules/"],
|
||||||
"transform" : {
|
"transform" : {
|
||||||
"^.+\\.tsx?$" : [
|
"^.+\\.tsx?$" : [
|
||||||
"ts-jest",
|
"ts-jest",
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"exclude": ["./dist"]
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
||||||
|
|
||||||
SPDX-License-Identifier: CC0-1.0
|
|
|
@ -20,5 +20,5 @@
|
||||||
"sourceMap": true
|
"sourceMap": true
|
||||||
},
|
},
|
||||||
"include": ["./src"],
|
"include": ["./src"],
|
||||||
"exclude": ["./dist", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]
|
"exclude": ["./dist"]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue