2021-03-02 18:57:41 -06:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2021-03-08 12:34:31 -06:00
|
|
|
"target": "es6",
|
2021-03-02 18:57:41 -06:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2022-03-30 23:04:00 -05:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"lib": ["ESNext"]
|
2021-03-02 18:57:41 -06:00
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|