mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
28 lines
535 B
JSON
28 lines
535 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2015",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"pretty": true,
|
|
"lib": [
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"jsx": "react",
|
|
"types": ["cypress"]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"integration/*.ts",
|
|
"../node_modules/cypress"
|
|
]
|
|
}
|