2020-08-03 09:30:48 +02:00
|
|
|
{
|
2021-03-27 14:35:58 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
2023-09-06 13:24:34 +02:00
|
|
|
"lib": ["es2020", "DOM"],
|
|
|
|
"jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
|
|
|
|
"jsxFactory": "h" /* Specify the JSX factory function to use when targeting react JSX emit, e.g. React.createElement or h. */,
|
2021-11-15 15:18:58 +01:00
|
|
|
"jsxFragmentFactory": "Fragment", // https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-0.html#custom-jsx-factories
|
2023-02-16 03:23:42 +01:00
|
|
|
"moduleResolution": "Node16",
|
2023-09-06 13:24:34 +02:00
|
|
|
"module": "Node16",
|
2021-03-27 14:35:58 +01:00
|
|
|
"target": "ES6",
|
2022-05-24 05:18:30 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"preserveSymlinks": true,
|
2021-03-27 14:35:58 +01:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"outDir": "lib",
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"strict": true,
|
|
|
|
"incremental": true,
|
|
|
|
"sourceMap": true,
|
2022-08-26 06:08:51 +02:00
|
|
|
"strictNullChecks": true,
|
2021-03-27 14:35:58 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"rootDir": "./src",
|
2023-09-06 13:24:34 +02:00
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2021-03-27 14:35:58 +01:00
|
|
|
},
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../taler-wallet-core/"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
2021-03-27 14:35:58 +01:00
|
|
|
{
|
|
|
|
"path": "../taler-util/"
|
|
|
|
}
|
|
|
|
],
|
2023-09-06 13:24:34 +02:00
|
|
|
"include": ["src/**/*"]
|
2023-02-16 03:23:42 +01:00
|
|
|
}
|