| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "downlevelIteration": true,
- "lib": [
- "DOM",
- "DOM.Iterable",
- "ESNext"
- ],
- "allowJs": true,
- "skipLibCheck": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "noEmit": true,
- "esModuleInterop": true,
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve",
- "incremental": true,
- "plugins": [
- {
- "name": "next"
- }
- ],
- "paths": {
- "@/*": [
- "./src/*"
- ],
- "@core/*": [
- "./src/@core/*"
- ],
- "@layouts/*": [
- "./src/@layouts/*"
- ],
- "@menu/*": [
- "./src/@menu/*"
- ],
- "@assets/*": [
- "./src/assets/*"
- ],
- "@components/*": [
- "./src/components/*"
- ],
- "@configs/*": [
- "./src/configs/*"
- ],
- "@views/*": [
- "./src/views/*"
- ],
- "@reducers/*": [
- "./src/reducers/*"
- ]
- }
- },
- "include": [
- ".eslintrc.js",
- "next.config.js",
- "postcss.config.js",
- "tailwind.config.js",
- "next-env.d.ts",
- "**/*.ts",
- "**/*.tsx",
- ".next/types/**/*.ts"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|