1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
"compilerOptions": {
"composite": true,
"lib": [
"es2021",
"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. */
"jsxFragmentFactory": "Fragment", // https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-0.html#custom-jsx-factories
"moduleResolution": "Node",
"module": "ESNext",
"target": "ES6",
"skipLibCheck": true,
"preserveSymlinks": true,
"noImplicitAny": true,
"outDir": "lib",
"noEmitOnError": true,
"strict": true,
"incremental": true,
"sourceMap": true,
"strictNullChecks": true,
"esModuleInterop": true,
"importHelpers": true,
"rootDir": "./src",
"typeRoots": [
"./node_modules/@types"
]
},
"references": [
{
"path": "../taler-wallet-core/"
},
{
"path": "../taler-util/"
}
],
"include": [
"src/**/*"
]
}
|