redoc/tsconfig.json

44 lines
787 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
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
2016-09-08 13:19:33 +03:00
"sourceMap": true,
2017-11-19 22:27:44 +03:00
// "declaration": 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",
"./src/hmr-playground.tsx",
"demo/*.tsx"
2016-08-28 21:46:10 +03:00
],
2016-09-08 13:19:33 +03:00
"awesomeTypescriptLoaderOptions": {
2016-08-28 21:46:10 +03:00
"resolveGlobs": true,
2016-09-08 13:19:33 +03:00
"useWebpackText": true
2017-10-12 00:01:37 +03:00
}
}