cna-template-uandersonmbc-tailwindcss
Version:
A template for Create Next App with Tailwind, Husky, Lint Staged, Prettier, Eslint, Jest, React Testing Library and Storybook
36 lines (35 loc) • 738 B
JSON
{
"compilerOptions": {
"target": "es6",
"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/*"]
},
"types": ["jest", "node", "@types/jest", "@types/testing-library__jest-dom"]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"**/*.spec.ts",
"**/*.d.ts"
],
"exclude": ["node_modules"]
}