mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-05 04:15:08 -05:00
* storybook init * alert stories * Avatar stories * badge stories * button stories * calander stories * stories default * card stories * checkbox stories * formatting * added tailwind config * add collapsible story * added command story * rename use-toast.ts to tsx * added more stories * fix linting issues * added stories for input * added stories for label * Added tests to button story * added multiselect stories * added popover stories * added render stories * scroll area stories * more stories * Added rest of the stories for the default components * fmt * add test runner * added ci * fix tests * fixing ci * remove storybook from ci * removed styling * added new line
33 lines
632 B
JSON
33 lines
632 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"test-runner-jest.config.js"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|