2020-05-01 23:35:33 -06:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "CommonJS",
|
|
|
|
"noImplicitAny": true,
|
2020-05-02 20:17:51 -06:00
|
|
|
"strictNullChecks": true,
|
2020-05-01 23:35:33 -06:00
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"outDir": "dist/",
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|