UNPKG

next13-starter

Version:

Start a Next13 Zustand TypeScript project in few second!

60 lines 1.07 kB
{ "compilerOptions": { "target": "es5", "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": { "@components/*": [ "./app/components/*" ], "@config/*": [ "./app/config/*" ], "@constants/*": [ "./app/constants/*" ], "@containers/*": [ "./app/containers/*" ], "@interface/*": [ "./app/interface/*" ], "@libs/*": [ "./app/libs/*" ], "@styles/*": [ "./app/styles/*" ], } }, "include": [ "next.config.js", "next-env.d.ts", "**/*.js", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts" ], "exclude": [ "node_modules" ] }