mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 20:54:22 -06:00
8e5000fb31
ref #11433
20 lines
388 B
JavaScript
20 lines
388 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"
|
|
],
|
|
};
|