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

41 lines
1.0 KiB
JSON
Raw Normal View History

{
2021-03-27 14:35:58 +01:00
"compilerOptions": {
"composite": true,
2021-11-15 15:18:58 +01:00
"lib": [
2022-06-06 05:09:25 +02:00
"es2021",
2021-11-15 15:18:58 +01:00
"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
2021-03-27 14:35:58 +01:00
"moduleResolution": "Node",
"module": "ESNext",
"target": "ES6",
"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",
2021-11-15 15:18:58 +01:00
"typeRoots": [
"./node_modules/@types"
]
2021-03-27 14:35:58 +01:00
},
"references": [
{
"path": "../taler-wallet-core/"
},
2021-03-27 14:35:58 +01:00
{
"path": "../taler-util/"
}
],
2021-11-15 15:18:58 +01:00
"include": [
"src/**/*"
]
2022-06-06 05:09:25 +02:00
}