redoc/tsconfig.json

32 lines
605 B
JSON
Raw Normal View History

{
2016-09-08 13:19:33 +03:00
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
2016-09-08 13:19:33 +03:00
"target": "es5",
"noImplicitAny": false,
"sourceMap": true,
"pretty": true,
"moduleResolution": "node",
"types": [
"jasmine",
"should",
2017-03-15 18:51:46 +03:00
"webpack"
],
"lib": [
"DOM", "ES2016", "DOM.Iterable"
2016-09-08 13:19:33 +03:00
],
2016-10-31 20:27:59 +03:00
"noEmitHelpers": true
2016-09-08 13:19:33 +03:00
},
"compileOnSave": false,
"exclude": [
2016-08-28 21:46:10 +03:00
"node_modules",
2016-09-08 13:19:33 +03:00
"dist"
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,
"forkChecker": true,
2016-09-08 13:19:33 +03:00
"useWebpackText": true
2016-08-28 21:46:10 +03:00
}
}