wallet-core/packages/taler-wallet-cli/tsconfig.json

34 lines
761 B
JSON
Raw Normal View History

2015-12-13 23:47:30 +01:00
{
"compileOnSave": true,
2016-01-18 22:41:25 +01:00
"compilerOptions": {
"composite": true,
2021-08-19 19:26:37 +02:00
"target": "ES2018",
"module": "Node16",
"moduleResolution": "Node16",
2016-01-18 22:41:25 +01:00
"sourceMap": true,
"lib": ["ES2020"],
2016-02-10 02:03:31 +01:00
"noImplicitReturns": true,
2016-09-12 17:41:12 +02:00
"noFallthroughCasesInSwitch": true,
"strict": true,
2018-09-20 02:56:13 +02:00
"strictPropertyInitialization": false,
"outDir": "lib",
"noImplicitAny": true,
2019-12-14 17:23:31 +01:00
"noImplicitThis": true,
"incremental": true,
"esModuleInterop": true,
"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
},
"include": ["src/**/*", "../taler-util/src/twrpc.ts"],
"references": [
{
"path": "../taler-wallet-core/"
2021-03-17 17:56:37 +01:00
},
{
"path": "../taler-util/"
}
]
}