vscode-texinfo/tsconfig.json

25 lines
658 B
JSON
Raw Normal View History

2021-03-22 16:19:48 +00:00
/**
* Copyright (C) 2020,2021 CismonX <admin@cismon.net>
*
* Copying and distribution of this file, with or without modification, are
* permitted in any medium without royalty, provided the copyright notice and
* this notice are preserved. This file is offered as-is, without any warranty.
*/
2020-10-03 18:04:18 +00:00
{
"compilerOptions": {
2020-10-08 14:31:54 +00:00
"target": "ES2019",
2020-10-03 18:04:18 +00:00
"outDir": "out",
2020-11-02 07:10:13 +00:00
"esModuleInterop": true,
2020-10-24 21:45:32 +00:00
"strictNullChecks": true,
2020-10-03 18:04:18 +00:00
"sourceMap": true,
"rootDir": "src",
"strict": true,
2021-04-21 09:25:24 +00:00
"noImplicitReturns": true,
2020-10-03 18:04:18 +00:00
},
"exclude": [
2021-04-21 09:25:24 +00:00
"*.config.ts",
2020-10-03 18:04:18 +00:00
"node_modules",
2021-04-21 09:25:24 +00:00
"scripts",
],
2020-10-03 18:04:18 +00:00
}