26 lines
570 B
JSON
26 lines
570 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitUseStrict": true,
|
|
"removeComments": true,
|
|
"declaration": true,
|
|
"target": "es2019",
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"module": "commonjs",
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"typeRoots" : [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
}
|