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

37 lines
801 B
JSON
Raw Permalink Normal View History

2015-12-13 23:47:30 +01:00
{
"compileOnSave": true,
2016-01-18 22:41:25 +01:00
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"target": "ES6",
"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,
"allowJs": true,
"checkJs": true,
"incremental": true,
"esModuleInterop": true,
"importHelpers": true,
2020-08-03 10:14:07 +02:00
"rootDir": "./src",
"typeRoots": ["./node_modules/@types"]
2016-01-18 22:41:25 +01:00
},
2021-08-20 13:52:13 +02:00
"include": ["src/**/*"],
"references": [
{
"path": "../taler-wallet-core/"
},
{
"path": "../taler-util/"
}
]
}