mirror of https://github.com/grafana/grafana.git
16 lines
361 B
JavaScript
16 lines
361 B
JavaScript
module.exports = {
|
|
verbose: true,
|
|
globals: {
|
|
'ts-jest': {
|
|
tsConfigFile: 'tsconfig.json',
|
|
},
|
|
},
|
|
transform: {
|
|
'^.+\\.tsx?$': '<rootDir>/../../node_modules/ts-jest/preprocessor.js',
|
|
},
|
|
moduleDirectories: ['node_modules'],
|
|
testRegex: '(\\.|/)(test)\\.ts$',
|
|
testEnvironment: 'node',
|
|
moduleFileExtensions: ['ts', 'js', 'json'],
|
|
};
|