redoc/tsconfig.aot.json

38 lines
774 B
JSON
Raw Normal View History

{
"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",
"strictNullChecks": false,
"typeRoots": [ "./node_modules/@types" ],
2017-05-08 11:24:25 +03:00
"declaration": true,
"declarationDir": "dist",
"lib": [
"es2015",
"dom"
],
"types": [
2017-06-14 11:12:49 +03:00
"webpack",
"swagger-schema-official"
]
},
2017-05-08 11:24:25 +03:00
"files": [
"custom.d.ts",
".tmp/lib/polyfills.ts",
2017-05-08 11:24:25 +03:00
".tmp/lib/redoc.module.ts"
],
"exclude": [
2017-05-08 11:24:25 +03:00
"node_modules"
],
"angularCompilerOptions": {
2017-05-08 11:24:25 +03:00
"genDir": "./dist",
"skipTemplateCodegen": true,
"strictMetadataEmit": true
}
}