2017-01-06 22:38:04 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
2017-07-22 18:04:54 +03:00
|
|
|
"outDir": "./dist",
|
2017-01-06 22:38:04 +03:00
|
|
|
"strictNullChecks": false,
|
2017-02-14 13:17:14 +03:00
|
|
|
"typeRoots": [ "./node_modules/@types" ],
|
2017-05-08 11:24:25 +03:00
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "dist",
|
2017-01-06 22:38:04 +03:00
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"types": [
|
2017-06-14 11:12:49 +03:00
|
|
|
"webpack",
|
|
|
|
"swagger-schema-official"
|
2017-01-06 22:38:04 +03:00
|
|
|
]
|
|
|
|
},
|
2017-05-08 11:24:25 +03:00
|
|
|
"files": [
|
|
|
|
"custom.d.ts",
|
2017-05-09 14:01:34 +03:00
|
|
|
".tmp/lib/polyfills.ts",
|
2017-05-08 11:24:25 +03:00
|
|
|
".tmp/lib/redoc.module.ts"
|
|
|
|
],
|
2017-01-06 22:38:04 +03:00
|
|
|
"exclude": [
|
2017-05-08 11:24:25 +03:00
|
|
|
"node_modules"
|
2017-01-06 22:38:04 +03:00
|
|
|
],
|
|
|
|
"angularCompilerOptions": {
|
2017-05-08 11:24:25 +03:00
|
|
|
"genDir": "./dist",
|
|
|
|
"skipTemplateCodegen": true,
|
|
|
|
"strictMetadataEmit": true
|
|
|
|
}
|
2017-01-06 22:38:04 +03:00
|
|
|
}
|