diff --git a/.eslintrc.json b/.eslintrc.json index 399d95f7..ac549aa7 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -39,11 +39,9 @@ "**/*.ts", "**/*.tsx" ], - "parser": "@typescript-eslint/typescript-estree", + "parser": "@typescript-eslint/parser", "parserOptions": { - "sourceType": "module", - "project": "./tsconfig.json", - "allowImportExportEverywhere": true + "project": "./tsconfig.dev.json" }, "extends": [ "plugin:react/recommended", diff --git a/Dockerfile b/Dockerfile index 5e644b67..68e6d86e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -108,6 +108,7 @@ COPY \ .proxyrc \ docker-entrypoint.sh \ jest.config.ts \ + tsconfig.dev.json \ ./ COPY --from=scripts /app/dist/scripts/ dist/scripts/ diff --git a/tsconfig.dev.json b/tsconfig.dev.json new file mode 100644 index 00000000..a0c8e3f2 --- /dev/null +++ b/tsconfig.dev.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.json", + "include": [ + "**/*", + "**/.*" + ] +}