31 lines
635 B
JSON
31 lines
635 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"*": [
|
||
|
"types/*"
|
||
|
]
|
||
|
},
|
||
|
"module": "commonjs",
|
||
|
"removeComments": true,
|
||
|
"lib": [
|
||
|
"es2015",
|
||
|
"es2017",
|
||
|
"dom"
|
||
|
],
|
||
|
"noImplicitAny": true,
|
||
|
"alwaysStrict": true,
|
||
|
"moduleResolution": "Node",
|
||
|
"experimentalDecorators": true,
|
||
|
"downlevelIteration": true,
|
||
|
"target": "ESNext",
|
||
|
"resolveJsonModule": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist"
|
||
|
]
|
||
|
}
|