wallet-core/packages/web-util/tsconfig.json

31 lines
764 B
JSON
Raw Normal View History

2022-12-06 13:21:17 +01:00
{
"compilerOptions": {
"composite": true,
2023-04-21 16:05:26 +02:00
"declaration": true,
2023-04-24 16:43:23 +02:00
"declarationMap": true,
"target": "ES2020",
"module": "Node16",
2022-12-06 13:21:17 +01:00
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
2023-02-16 01:01:18 +01:00
"moduleResolution": "Node16",
2022-12-06 13:21:17 +01:00
"sourceMap": true,
"lib": ["DOM", "ES2020"],
2022-12-06 13:21:17 +01:00
"outDir": "lib",
"preserveSymlinks": true,
"skipLibCheck": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
"strictPropertyInitialization": false,
"noImplicitAny": true,
"noImplicitThis": true,
"incremental": true,
"esModuleInterop": true,
"importHelpers": true,
"rootDir": "./src",
"typeRoots": ["./node_modules/@types"]
2022-12-06 13:21:17 +01:00
},
"include": ["src/**/*"]
2023-02-16 01:01:18 +01:00
}