2020-08-03 09:30:48 +02:00
|
|
|
{
|
2021-03-27 14:35:58 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"lib": ["es6", "DOM"],
|
2021-09-03 17:03:59 +02:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "preact",
|
2021-03-27 14:35:58 +01:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ES6",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"outDir": "lib",
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"strict": true,
|
|
|
|
"incremental": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"typeRoots": ["./node_modules/@types"]
|
|
|
|
},
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../taler-wallet-core/"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
2021-03-27 14:35:58 +01:00
|
|
|
{
|
|
|
|
"path": "../taler-util/"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"include": ["src/**/*"]
|
2020-08-03 09:30:48 +02:00
|
|
|
}
|