mirror of
https://github.com/morten-olsen/parcel.git
synced 2026-02-08 01:36:24 +01:00
8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
//testEnvironment: 'node',
|
|
testEnvironment: path.join(__dirname, 'tests', 'env-ts.js'),
|
|
};
|