37 lines
801 B
JSON
37 lines
801 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"target": "ES6",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"sourceMap": true,
|
|
"lib": ["ES2020"],
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"outDir": "lib",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"rootDir": "./src",
|
|
"typeRoots": ["./node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"references": [
|
|
{
|
|
"path": "../taler-wallet-core/"
|
|
},
|
|
{
|
|
"path": "../taler-util/"
|
|
}
|
|
]
|
|
}
|