2015-12-13 23:47:30 +01:00
|
|
|
{
|
2018-01-03 14:42:06 +01:00
|
|
|
"compileOnSave": true,
|
2016-01-18 22:41:25 +01:00
|
|
|
"compilerOptions": {
|
2020-08-03 09:30:48 +02:00
|
|
|
"composite": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
2020-04-06 17:35:51 +02:00
|
|
|
"target": "ES6",
|
2023-09-06 13:24:34 +02:00
|
|
|
"module": "Node16",
|
2022-10-13 15:14:49 +02:00
|
|
|
"moduleResolution": "Node16",
|
2016-01-18 22:41:25 +01:00
|
|
|
"sourceMap": true,
|
2023-09-06 13:24:34 +02:00
|
|
|
"lib": ["ES2020"],
|
2016-02-10 02:03:31 +01:00
|
|
|
"noImplicitReturns": true,
|
2016-09-12 17:41:12 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2017-05-27 16:31:11 +02:00
|
|
|
"strict": true,
|
2018-09-20 02:56:13 +02:00
|
|
|
"strictPropertyInitialization": false,
|
2020-08-03 09:30:48 +02:00
|
|
|
"outDir": "lib",
|
2017-05-27 18:43:11 +02:00
|
|
|
"noImplicitAny": true,
|
2019-12-14 17:23:31 +01:00
|
|
|
"noImplicitThis": true,
|
2017-05-27 18:43:11 +02:00
|
|
|
"allowJs": true,
|
2017-05-29 18:27:50 +02:00
|
|
|
"checkJs": true,
|
2019-08-29 23:12:55 +02:00
|
|
|
"incremental": true,
|
2020-04-06 17:35:51 +02:00
|
|
|
"esModuleInterop": true,
|
2020-08-03 09:30:48 +02:00
|
|
|
"importHelpers": true,
|
2020-08-03 10:14:07 +02:00
|
|
|
"rootDir": "./src",
|
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2016-01-18 22:41:25 +01:00
|
|
|
},
|
2021-08-20 13:52:13 +02:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../taler-wallet-core/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../taler-util/"
|
|
|
|
}
|
|
|
|
]
|
2020-04-06 17:35:51 +02:00
|
|
|
}
|