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

35 lines
730 B
JSON
Raw Normal View History

2022-12-06 13:21:17 +01:00
{
"compilerOptions": {
"composite": true,
"target": "ES6",
"module": "ESNext",
"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": [
"es6"
],
"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"
]
},
"include": [
"src/**/*"
]
2023-02-16 01:01:18 +01:00
}