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": false,
|
2023-09-06 13:24:34 +02:00
|
|
|
"target": "ES2020",
|
|
|
|
"module": "Node16",
|
2022-10-13 15:14:49 +02:00
|
|
|
"moduleResolution": "Node16",
|
2023-08-02 12:40:28 +02:00
|
|
|
"resolveJsonModule": true,
|
2016-01-18 22:41:25 +01:00
|
|
|
"sourceMap": true,
|
2023-09-06 13:24:34 +02:00
|
|
|
"lib": ["ES2020"],
|
2023-08-02 12:40:28 +02:00
|
|
|
"resolvePackageJsonImports": true,
|
2020-08-03 09:30:48 +02:00
|
|
|
"types": ["node"],
|
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,
|
2020-08-03 10:14:07 +02:00
|
|
|
"rootDir": "./src",
|
2022-03-08 19:19:29 +01:00
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2016-01-18 22:41:25 +01:00
|
|
|
},
|
2020-08-03 09:30:48 +02:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../idb-bridge/"
|
2021-03-17 17:56:37 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../taler-util/"
|
2020-08-03 09:30:48 +02:00
|
|
|
}
|
|
|
|
],
|
2023-09-06 13:24:34 +02:00
|
|
|
"include": ["src/**/*", "src/*.json", "../taler-util/src/bank-api-client.ts"]
|
2020-04-06 17:35:51 +02:00
|
|
|
}
|