mirror of
https://github.com/status-im/status-web.git
synced 2026-08-30 22:01:15 +00:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
|
|
// strictness
|
|
"strict": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"preserveSymlinks": false,
|
|
"jsx": "preserve",
|
|
"plugins": [{ "name": "next" }],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~components/*": ["./src/app/_components/*"],
|
|
"~hooks/*": ["./src/app/_hooks/*"],
|
|
"~constants/*": ["./src/app/_constants/*"],
|
|
"~services/*": ["./src/app/_services/*"],
|
|
"~utils/*": ["./src/utils/*"],
|
|
"~types/*": ["./src/types/*"],
|
|
"~/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"env.d.ts",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", ".next"],
|
|
"references": [
|
|
{
|
|
"path": "../../packages/components"
|
|
},
|
|
{
|
|
"path": "../../packages/icons"
|
|
}
|
|
]
|
|
}
|