8575a72a22
* Use shared ts-packages in wallet * Add eslint rules * Formatting: run eslint --fix on all files * Formatting: fix linting errors for dependencies * linting fixes * fix sign in pages * fix breaking change * fix ts errors fix ts and es errors * Fix up typings for image and json modules Add tsconfig for eslint to process webpack config * Use shared webpack config * Use shared logo component * Remove unused images * Allow html path to be passed as an argument in shared webpack config * Fix up webpack config for html template * Build shared ts-packages before starting dev mode * Fix webpack config * use shared logo component Co-authored-by: fmtabbara <fmtabbara@hotmail.co.uk> Co-authored-by: mmsinclair <mmsinclair@users.noreply.github.com>
24 lines
644 B
JSON
24 lines
644 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"jsx": "react-jsx",
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@assets/*": ["../assets/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "jest.config.js", "webpack.config.js", "webpack.prod.js", "webpack.common.js", "target"]
|
|
}
|