vscode-texinfo/tsconfig.json

25 lines
658 B
JSON

/**
* 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.
*/
{
"compilerOptions": {
"target": "ES2021",
"outDir": "out",
"esModuleInterop": true,
"strictNullChecks": true,
"sourceMap": true,
"rootDir": "src",
"strict": true,
"noImplicitReturns": true,
},
"exclude": [
"*.config.ts",
"node_modules",
"scripts",
],
}