bismuth/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
490 B
JSON
Raw Normal View History

2018-11-07 18:07:04 +03:00
{
"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
}
]
},
2021-08-27 19:57:11 +03:00
"typedocOptions": {
2021-12-01 16:34:23 +03:00
"entryPoints": ["src/kwinscript"]
2021-08-27 19:57:11 +03:00
},
"include": ["src/**/*"]
}