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