[READ-ONLY] Mirror of https://github.com/danielroe/typed-vuex. 馃彟 A typed store accessor for vanilla Vuex.
typed-vuex.roe.dev
hacktoberfest
nuxt
nuxt-module
nuxtjs
typescript
vue
vuejs
vuex
483 B
23 lines
1module.exports = {
2 verbose: true,
3 projects: ['<rootDir>/packages/*/jest.config.js'],
4 transform: {
5 '\\.(js|ts)$': [
6 'babel-jest',
7 {
8 presets: ['@babel/preset-env', '@babel/preset-typescript'],
9 plugins: ['@babel/plugin-transform-runtime'],
10 },
11 ],
12 },
13 testEnvironment: 'node',
14 collectCoverage: true,
15 coverageThreshold: {
16 global: {
17 branches: 100,
18 functions: 100,
19 lines: 100,
20 statements: 100,
21 },
22 },
23}