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

31 lines
679 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,
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
2016-01-18 22:41:25 +01:00
"sourceMap": true,
"lib": ["es6"],
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/**/*"],
"references": [
{
"path": "../taler-wallet-core/"
}
]
}