mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
32 lines
555 B
JSON
32 lines
555 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"outDir": "e2e/.build",
|
|
"pretty": true,
|
|
"lib": [
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"jsx": "react",
|
|
"types": [
|
|
"mocha",
|
|
"cypress",
|
|
"chai"
|
|
]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"e2e"
|
|
]
|
|
}
|