27 lines
497 B
JSON
27 lines
497 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2015",
|
||
|
"module": "CommonJS",
|
||
|
"lib": [
|
||
|
"es2019",
|
||
|
"dom"
|
||
|
],
|
||
|
"declaration": true,
|
||
|
"outDir": "./dist",
|
||
|
"rootDir": "lib",
|
||
|
"types": [
|
||
|
"node"
|
||
|
],
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"resolveJsonModule": false,
|
||
|
"removeComments": true,
|
||
|
"noImplicitAny": false,
|
||
|
"preserveConstEnums": true,
|
||
|
"suppressImplicitAnyIndexErrors": true
|
||
|
},
|
||
|
"include": [
|
||
|
"lib/*"
|
||
|
],
|
||
|
"exclude": [ ]
|
||
|
}
|