2018-05-03 15:07:59 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "lib",
|
2021-01-28 10:24:11 -05:00
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types"
|
|
|
|
],
|
2018-05-03 15:15:20 -04:00
|
|
|
"strict": true,
|
2021-01-28 10:24:11 -05:00
|
|
|
"noImplicitAny": false,
|
2018-05-03 15:15:20 -04:00
|
|
|
"experimentalDecorators": true,
|
2018-05-03 15:07:59 -04:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"index.ts",
|
|
|
|
"src/**/*"
|
|
|
|
]
|
|
|
|
}
|