2017-09-25 11:07:52 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2018-11-27 10:26:23 +00:00
|
|
|
"baseUrl": "./",
|
2017-09-25 11:07:52 +00:00
|
|
|
"outDir": "./dist/out-tsc",
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
2018-11-27 10:26:23 +00:00
|
|
|
"module": "es2015",
|
2017-09-25 11:07:52 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-11-27 10:26:23 +00:00
|
|
|
"importHelpers": true,
|
2017-09-25 11:07:52 +00:00
|
|
|
"target": "es5",
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
2019-04-29 11:00:04 +00:00
|
|
|
// below is fix for angular-cli to support core-js >= 3.0
|
|
|
|
"paths": {
|
|
|
|
"core-js/es7/reflect": ["../node_modules/core-js/proposals/reflect-metadata"],
|
|
|
|
"core-js/es6/*": ["../node_modules/core-js/es/*"]
|
|
|
|
},
|
2017-09-25 11:07:52 +00:00
|
|
|
"lib": [
|
2018-11-27 10:26:23 +00:00
|
|
|
"es2018",
|
2017-09-25 11:07:52 +00:00
|
|
|
"dom"
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
"include": [
|
2018-01-18 09:39:20 +00:00
|
|
|
"./src/**/*",
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
]
|
2017-09-25 11:07:52 +00:00
|
|
|
}
|