46 lines
876 B
JSON
46 lines
876 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"lib": [
|
|
"es2017",
|
|
"esnext.asynciterable"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2017",
|
|
"types": [
|
|
"chai-as-promised",
|
|
"mocha",
|
|
"node",
|
|
"sinon-chai"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"node_modules",
|
|
"vendor"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"src/**/*",
|
|
"test/**/*"
|
|
]
|
|
}
|
|
|