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