mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
44 lines
799 B
JSON
44 lines
799 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"noImplicitAny": false,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noEmitHelpers": true,
|
|
"importHelpers": true,
|
|
"outDir": "lib",
|
|
"pretty": true,
|
|
"lib": [
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"jsx": "react",
|
|
"types": [
|
|
"webpack",
|
|
"webpack-env",
|
|
"jest"
|
|
]
|
|
},
|
|
"compileOnSave": false,
|
|
"exclude": [
|
|
"node_modules",
|
|
".tmp",
|
|
"lib",
|
|
"e2e/**"
|
|
],
|
|
"include": [
|
|
"cli/index.ts",
|
|
"./custom.d.ts",
|
|
"./demo/playground/hmr-playground.tsx",
|
|
"./src/**/*.ts?",
|
|
"demo/*.tsx"
|
|
]
|
|
}
|