redoc/tsconfig.json

44 lines
812 B
JSON
Raw Normal View History

{
2016-09-08 13:19:33 +03:00
"compilerOptions": {
"experimentalDecorators": true,
2017-10-12 00:01:37 +03:00
"moduleResolution": "node",
2016-09-08 13:19:33 +03:00
"target": "es5",
"noImplicitAny": false,
2017-10-12 00:01:37 +03:00
"noUnusedParameters": true,
"strictNullChecks": true,
2016-09-08 13:19:33 +03:00
"sourceMap": true,
2018-05-16 12:44:36 +03:00
"declaration": true,
"declarationDir": "typings",
"noEmitHelpers": true,
"importHelpers": true,
2017-10-12 00:01:37 +03:00
"outDir": "lib",
2016-09-08 13:19:33 +03:00
"pretty": true,
2017-03-15 18:51:46 +03:00
"lib": [
2017-10-12 00:01:37 +03:00
"es2015",
"es2016",
"es2017",
"dom"
2016-09-08 13:19:33 +03:00
],
2017-10-12 00:01:37 +03:00
"jsx": "react",
2017-05-08 11:24:25 +03:00
"types": [
"webpack",
2017-10-12 00:01:37 +03:00
"webpack-env",
"jest"
2017-05-08 11:24:25 +03:00
]
2016-09-08 13:19:33 +03:00
},
"compileOnSave": false,
"exclude": [
2016-08-28 21:46:10 +03:00
"node_modules",
2017-10-12 00:01:37 +03:00
".tmp",
"lib",
"e2e/**"
2017-10-12 00:01:37 +03:00
],
"include": [
"./custom.d.ts",
2017-11-20 13:44:01 +03:00
"./demo/playground/hmr-playground.tsx",
"./src/index.ts",
"./src/standalone.tsx",
2017-10-12 00:01:37 +03:00
"demo/*.tsx"
2018-03-17 16:11:52 +03:00
]
}