* feat(build): inline chrome-extension-toolkit fix: tsconfig docs: add chrome-extension-toolkit README.md chore: update imports fix: stores fix: chrome-extension-toolkit ForegroundMessenger fix: calendarBackgroundHandler fix: format and lint fix: path alias fix: add jsdom env and fix imports Co-authored-by: Sriram Hariharan <sghsri@gmail.com> * build: vite storybook config crx toolkit line --------- Co-authored-by: Sriram Hariharan <sghsri@gmail.com> Co-authored-by: Derek <derex1987@gmail.com>
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"typeRoots": ["./node_modules/@types", "@types"],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"types": ["vite/client", "unplugin-icons/types/react", "node"],
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"src/*": ["src/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@pages/*": ["src/pages/*"],
|
|
"@public/*": ["public/*"],
|
|
"@shared/*": ["src/shared/*"],
|
|
"@background/*": ["src/pages/background/*"],
|
|
"@views/*": ["src/views/*"],
|
|
"@chrome-extension-toolkit": ["src/lib/chrome-extension-toolkit"],
|
|
},
|
|
},
|
|
"include": [
|
|
"src",
|
|
"utils",
|
|
"scripts",
|
|
"vite.config.ts",
|
|
"@types",
|
|
"node_modules/@types",
|
|
"src/manifest.ts",
|
|
"package.json",
|
|
".eslintrc.cjs",
|
|
"postcss.config.cjs",
|
|
".storybook",
|
|
"unocss.config.ts",
|
|
"gulpfile.js",
|
|
"@types",
|
|
],
|
|
}
|