0.0.3 • Published 1 year ago

@bemedev/vitest-alias v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Add tsconfig alias to vitess alias

Check the vitest.config.ts file to see how to use.

Just pass the tsconfig.json file as parameter (the "json", not the "filename")

import { defineConfig } from 'vitest/config';
import { aliasTs } from '@bemedev';
/**
 * Make sure you add "resolveJsonModule": true
 * inside your tsconfig.json at compilerOPtions
 * or write the json file directly
 */
import tsconfig from './tsconfig.json';

export default defineConfig({
  plugins: [aliasTs(tsconfig)],
  test: {
    environment: 'node',
    globals: true,

    coverage: {
      enabled: true,
      extension: 'ts',
      reportsDirectory: '.coverage',
      all: true,
      exclude: ['**/types.ts', '**/index.ts'],
      provider: 'v8',
    },
  },
});
0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago