mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
30 lines
752 B
JSON
30 lines
752 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", "WebWorker.ImportScripts"],
|
|
"jsx": "react",
|
|
"types": ["webpack", "webpack-env", "jest"]
|
|
},
|
|
"compileOnSave": false,
|
|
"exclude": ["node_modules", ".tmp", "lib", "e2e/**"],
|
|
"include": [
|
|
"./custom.d.ts",
|
|
"./demo/playground/hmr-playground.tsx",
|
|
"./src/**/*.ts?",
|
|
"demo/*.tsx",
|
|
"src/empty.js"
|
|
]
|
|
}
|