diff --git a/Makefile b/Makefile index 81760fc..f6b0c72 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ clean: .PHONY: distclean distclean: clean - rm -rf .cache/data + rm -rf .cache/ .PHONY: up up: .require-license diff --git a/jest.config.js b/jest.config.js index 2569186..8c60984 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,6 +2,7 @@ module.exports = { clearMocks: true, collectCoverage: true, coverageDirectory: 'coverage', + modulePathIgnorePatterns: ["./.cache/"], preset: 'ts-jest', testEnvironment: 'node' } diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index bffd823..ff20988 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,4 +1,4 @@ { - "exclude": ["node_modules", "__tests__/data/**/*", "lib/**/*"], + "exclude": ["node_modules", ".cache/**/*", "lib/**/*"], "extends": "./tsconfig.json" } diff --git a/tsconfig.json b/tsconfig.json index 6c295d6..79df889 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,6 @@ "outDir": "./lib", "resolveJsonModule": true }, - "exclude": ["node_modules", "__tests__/**/*.spec.ts", "__tests__/data/**/*", "lib/**/*"], + "exclude": ["node_modules", "__tests__/**/*.spec.ts", ".cache/**/*", "lib/**/*"], "extends": "@tsconfig/node16/tsconfig.json" }