mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
38 lines
774 B
JSON
38 lines
774 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"strictNullChecks": false,
|
|
"typeRoots": [ "./node_modules/@types" ],
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"types": [
|
|
"webpack",
|
|
"swagger-schema-official"
|
|
]
|
|
},
|
|
"files": [
|
|
"custom.d.ts",
|
|
".tmp/lib/polyfills.ts",
|
|
".tmp/lib/redoc.module.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"genDir": "./dist",
|
|
"skipTemplateCodegen": true,
|
|
"strictMetadataEmit": true
|
|
}
|
|
}
|