2019-11-23 15:08:30 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./built",
|
|
|
|
"allowJs": true,
|
2020-02-24 10:16:49 -05:00
|
|
|
"strictNullChecks": true,
|
2020-04-11 05:28:43 -04:00
|
|
|
"target": "es6",
|
2019-11-23 15:08:30 -05:00
|
|
|
"module": "commonjs",
|
2020-04-10 14:15:22 -04:00
|
|
|
"esModuleInterop": true,
|
2020-04-10 16:06:12 -04:00
|
|
|
"experimentalDecorators": true,
|
2020-04-11 05:28:43 -04:00
|
|
|
"emitDecoratorMetadata": true,
|
2020-04-12 07:13:13 -04:00
|
|
|
"sourceMap": true,
|
2020-04-12 08:23:36 -04:00
|
|
|
"lib": ["ES2019"],
|
|
|
|
"alwaysStrict": true
|
2019-11-23 15:08:30 -05:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./lib/**/*"
|
|
|
|
]
|
|
|
|
}
|