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,
|
2021-08-19 19:26:37 +02:00
|
|
|
"target": "ES2018",
|
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,
|
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,
|
|
|
|
"rootDir": "src",
|
|
|
|
"baseUrl": "./src",
|
2020-08-03 10:14:07 +02:00
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2016-01-18 22:41:25 +01:00
|
|
|
},
|
2023-01-26 12:48:35 +01:00
|
|
|
"include": ["src/**/*", "../taler-util/src/twrpc.ts"],
|
2020-08-03 09:30:48 +02:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../taler-wallet-core/"
|
2021-03-17 17:56:37 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../taler-util/"
|
2020-08-03 09:30:48 +02:00
|
|
|
}
|
|
|
|
]
|
2020-04-06 17:35:51 +02:00
|
|
|
}
|