2018-01-03 21:20:58 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-04-21 23:14:04 -04:00
|
|
|
"pretty": true,
|
2018-01-06 16:04:16 +01:00
|
|
|
"moduleResolution": "node",
|
2020-03-11 22:00:14 +09:00
|
|
|
"noImplicitAny": true,
|
2018-04-18 12:59:48 -04: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-05 22:46:51 -05:00
|
|
|
"declaration": true,
|
2018-01-06 16:04:16 +01:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"declarationDir": "dist/types",
|
2018-04-18 12:59:48 -04: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 14:11:28 -05:00
|
|
|
]
|
2018-01-03 21:20:58 -05:00
|
|
|
},
|
2019-03-27 14:41:06 -04:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2018-01-03 21:20:58 -05:00
|
|
|
}
|