bismuth/tsconfig.json

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

17 lines
333 B
JSON
Raw Normal View History

2018-11-07 18:07:04 +03:00
{
"compileOnSave": true,
"compilerOptions": {
2021-08-28 21:02:42 +03:00
"target": "es5",
"noEmitOnError": false,
"removeComments": true,
"lib": ["es5", "ES2015", "ES2016"],
"alwaysStrict": true,
"strict": true,
"module": "ES6"
},
2021-08-27 19:57:11 +03:00
"typedocOptions": {
"entryPoints": ["src"]
2021-08-27 19:57:11 +03:00
},
"include": ["src/**/*", "test/**/*"]
}