27 строки
648 B
JSON
27 строки
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es2018",
|
|
],
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"inlineSources": false,
|
|
"declaration": true,
|
|
"outDir": "lib",
|
|
"rootDir": "src",
|
|
"alwaysStrict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
},
|
|
"exclude": [
|
|
"src/test/clientExtension",
|
|
"lib",
|
|
"bin"
|
|
],
|
|
}
|