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