mirror of
https://github.com/zhigang1992/xverse-web-extension.git
synced 2026-04-29 21:26:07 +08:00
* 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
30 lines
750 B
JSON
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"]
|
|
}
|