Manuel Friedli
be51aab2ee
- webpack build does not run successfully, typescript errors out, saying "TS2304: Cannot find name 'module'." or 'require' or 'process' in certain .ts files.
17 lines
348 B
JSON
17 lines
348 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true
|
|
}
|
|
}
|