38 lines
903 B
JSON
38 lines
903 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"target": "ES2020",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"lib": ["ES2020"],
|
|
"resolvePackageJsonImports": true,
|
|
"types": ["node"],
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"outDir": "lib",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"rootDir": "./src",
|
|
"typeRoots": ["./node_modules/@types"]
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../idb-bridge/"
|
|
},
|
|
{
|
|
"path": "../taler-util/"
|
|
}
|
|
],
|
|
"include": ["src/**/*", "src/*.json", "../taler-util/src/bank-api-client.ts"]
|
|
}
|