Files
xverse-web-extension/tsconfig.json
Mahmoud Aboelenein 2fcd6e1413 WIP: boilerplate-setup (#10)
* WIP: boilerplate-setup

* configure webpack for dev and prod with react

* WIP setup sample code with styling and design tokens

* finalized i18n localization

* added eslint and prettier config and change files accordingly

* replave react/hotreload with react-refresh

* added ts path aliases and updated types

* init onboarding flow
2022-09-20 10:13:20 +02:00

30 lines
750 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"jsx": "react-jsx",
"rootDir": "src",
"outDir": "build/js",
"baseUrl": "./src",
"paths": {
"@components/*": ["app/components/*"],
"@hooks/*": ["app/hooks/*"],
"@assets/*": ["assets/*"],
"@screens/*": ["app/screens/*"],
}
},
"include": ["src"]
}