2018-01-04 03:20:58 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-04-22 05:14:04 +02:00
|
|
|
"pretty": true,
|
2018-01-06 16:04:16 +01:00
|
|
|
"moduleResolution": "node",
|
2020-03-11 14:00:14 +01:00
|
|
|
"noImplicitAny": true,
|
2018-04-18 18:59:48 +02:00
|
|
|
"target": "ES6",
|
|
|
|
"module": "commonjs",
|
2020-07-23 19:32:20 +02:00
|
|
|
"lib": ["es5", "es6", "es7", "dom"],
|
2018-01-06 16:04:16 +01:00
|
|
|
"sourceMap": true,
|
2018-01-06 04:46:51 +01:00
|
|
|
"declaration": true,
|
2018-01-06 16:04:16 +01:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"declarationDir": "dist/types",
|
2018-04-18 18:59:48 +02:00
|
|
|
"outDir": "dist",
|
2021-06-03 18:58:57 +02:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"jslib-common/*": [
|
|
|
|
"common/src/*"
|
|
|
|
],
|
|
|
|
"jslib-angular/*": [
|
|
|
|
"angular/src/*"
|
|
|
|
],
|
|
|
|
"jslib-electron/*": [
|
|
|
|
"electron/src/*"
|
|
|
|
],
|
|
|
|
"jslib-node/*": [
|
|
|
|
"node/src/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"transform": "typescript-transform-paths"
|
|
|
|
}
|
2018-01-08 20:11:28 +01:00
|
|
|
]
|
2018-01-04 03:20:58 +01:00
|
|
|
},
|
2018-01-06 04:46:51 +01:00
|
|
|
"include": [
|
2018-04-18 18:59:48 +02:00
|
|
|
"spec"
|
2019-03-27 19:41:06 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist"
|
2018-01-04 03:20:58 +01:00
|
|
|
]
|
|
|
|
}
|