diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-08-10 14:18:02 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-08-10 14:18:02 +0530 |
| commit | b6213f660b6a706f48289b492f305bc2f4620f80 (patch) | |
| tree | 4fde7988ca4b3640abfa01a8b473a2e768572514 /jest.config.js | |
| parent | 5a659a47c6e4823c2e29dd03eb8988270157de43 (diff) | |
| download | css-everything-b6213f660b6a706f48289b492f305bc2f4620f80.tar.gz css-everything-b6213f660b6a706f48289b492f305bc2f4620f80.zip | |
feat: style injection
Diffstat (limited to '')
| -rw-r--r-- | jest.config.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..976a5d4 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,16 @@ +/** @type {import('ts-jest').JestConfigWithTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + transform: { + "^.+\\.spec.ts?$": [ + "ts-jest", + { + diagnostics: { + exclude: ['**'], + }, + }, + ], + }, + transformIgnorePatterns: ["<rootDir>/node_modules/"], +}; |
