bismuth/tsconfig.json
2021-12-01 16:38:58 +03:00

24 lines
490 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/kwinscript"]
},
"include": ["src/**/*"]
}