Removed rollup for components.

This commit is contained in:
Mike Cao 2023-04-21 13:16:54 -07:00
parent b9a0f0442e
commit 69b9458975
4 changed files with 21 additions and 106 deletions

View file

@ -14,11 +14,18 @@
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"jsx": "react-jsx",
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": { "*": ["./*"] }
"paths": {
"*": ["./*"]
},
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"resolveJsonModule": true,
"isolatedModules": true
},
"include": ["next-env.d.ts", "**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]