24 lines
381 B
JSON
24 lines
381 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": [
|
|
"esnext",
|
|
"esnext.array",
|
|
"esnext.asynciterable",
|
|
"esnext.intl",
|
|
"esnext.symbol"
|
|
],
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
"experimentalDecorators": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src"
|
|
]
|
|
}
|