Files
UT-Registration-Plus/tsconfig.json
doprz bd17e33537 feat: release notes (#283)
* feat: add release.ts

* feat: add utils

* chore: add scripts to tsconfig.json include

* feat: add changelog logic, component, storybook file, scripts, and update to Node v20.9.0 (LTS)

* chore: update packages

* feat: use conventionalcommits for changelog preset

* feat: update padding, width, and change font to mono

* feat: refactor to use DialogProvider

* chore: remove extra args

* feat: update CHANGELOG.md, add title, and add button

* refactor: use hook

* chore: fix typo
2024-10-12 17:05:37 -05:00

47 lines
1.3 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/*"]
}
},
"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",
"@types"
]
}