2021-12-11 23:03:55 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"noImplicitAny": true,
|
2021-12-12 10:53:26 -05:00
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Node",
|
2021-12-12 11:23:03 -05:00
|
|
|
"baseUrl": "./src",
|
2021-12-12 17:09:52 -05:00
|
|
|
"outDir": "./dist",
|
2021-12-12 22:43:24 -05:00
|
|
|
"declaration": true,
|
2021-12-12 23:57:14 -05:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"target": "ESNext"
|
2021-12-12 17:09:52 -05:00
|
|
|
},
|
|
|
|
|
"paths": {
|
|
|
|
|
"@commands:executor": [""]
|
2021-12-11 23:03:55 -05:00
|
|
|
},
|
|
|
|
|
"include": [
|
2021-12-12 11:23:03 -05:00
|
|
|
"src/**/*.ts"
|
2021-12-11 23:03:55 -05:00
|
|
|
]
|
|
|
|
|
}
|