outline-server/tsconfig.json
Jonathan Cohen cb4c3f8d31
Ensure that Karma and Electron use the same Chromium version (#803)
* Ensure that Karma and Electron use the same Chromium version

* Move the unit test to server_manager.  This fixes an error on Travis involving importing from a package.json governed by a different tsconfig

* Unconditionally build the install script in the web app test
2021-02-01 13:04:56 -05:00

13 lines
281 B
JSON

{
"compilerOptions": {
"target": "es2015",
"removeComments": false,
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "Node",
"sourceMap": true,
"experimentalDecorators":true,
"allowJs": true,
"resolveJsonModule": true,
}
}