23 lines
565 B
JSON
23 lines
565 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["es2017", "dom"],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitThis": true,
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
"alwaysStrict": true,
|
|
"types": ["node", "mocha", "chai", "sinon"],
|
|
"esModuleInterop": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
}
|
|
}
|