@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
18 lines (16 loc) • 375 B
text/typescript
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
typecheck: {
enabled: true,
tsconfig: 'tsconfig.lint.json',
},
setupFiles: ['dotenv/config'],
},
resolve: {
alias: {
'@jirajs': new URL('./src', import.meta.url).pathname,
'@tests': new URL('./tests', import.meta.url).pathname,
},
},
});