bismuth/tsconfig.json
Mikhail Zolotukhin 13b1987ee0 test: add a few basic tests with mocks
Tests directory probably will be used for integration tests.
2021-09-16 18:25:18 +03:00

24 lines
479 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"target": "es2016",
"noEmitOnError": false,
"removeComments": true,
"lib": ["es5", "ES2015", "ES2016"],
"alwaysStrict": true,
"strict": true,
"moduleResolution": "node",
"module": "ES6",
"plugins": [
{
"transform": "ts-auto-mock/transformer",
"cacheBetweenTests": false
}
]
},
"typedocOptions": {
"entryPoints": ["src"]
},
"include": ["src/**/*"]
}