mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
049094f179
- common webpack config - use latest karma-coverage + remap-istanbul - use webpack-ngc instead of ngc buildstep - update dev dependencies - use V8LazyParseWebpackPlugin
42 lines
815 B
JSON
42 lines
815 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"noEmitHelpers": true,
|
|
"strictNullChecks": false,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
},
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.spec.ts",
|
|
"**/*.e2e.ts"
|
|
],
|
|
"awesomeTypescriptLoaderOptions": {
|
|
"forkChecker": true,
|
|
"useWebpackText": true
|
|
},
|
|
"angularCompilerOptions": {
|
|
"genDir": "./compiled",
|
|
"skipMetadataEmit": true
|
|
},
|
|
"compileOnSave": false,
|
|
"buildOnSave": false,
|
|
"atom": { "rewriteTsconfig": false }
|
|
}
|