2021-10-06 09:43:59 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es2019",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"declaration": true,
|
2021-10-07 17:23:17 +00:00
|
|
|
"sourceMap": true,
|
2021-10-06 09:43:59 +00:00
|
|
|
"outDir": "dist",
|
|
|
|
"typeRoots": [
|
|
|
|
"src/types/"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
]
|
|
|
|
}
|