mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 19:51:07 +05:00
* feat(layout): add base page layout Add base layout component with dark mode support fix #15 * feat(storybook): add dark mode support to all components
32 lines
769 B
JSON
32 lines
769 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"alwaysStrict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"components/*": ["components/*"],
|
|
"pages/*": ["pages/*"],
|
|
"theme/*": ["styles/*"],
|
|
"utils/*": ["utils/*"],
|
|
"hooks/*": ["hooks/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["**/*.ts", "**/*.tsx", "./*.js", "./public/**/*.js"]
|
|
}
|