mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 23:51:43 +03:00
c3acbd68ec
* chore: shift CTA from bin to .ts * add change file * fix rollup build
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
modulePathIgnorePatterns: ['__fixtures__'],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.json'
|
|
}
|
|
}
|
|
}
|