mirror of https://github.com/buster-so/buster.git
35 lines
942 B
JSON
35 lines
942 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"types": ["node", "jest", "@testing-library/jest-dom"],
|
|
"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/*"],
|
|
"@utils/*": ["./src/lib/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@layouts/*": ["./src/layouts/*"],
|
|
"@controllers/*": ["./src/controllers/*"],
|
|
"@chatLayout/*": ["./src/layouts/ChatLayout/*"],
|
|
"@hooks/*": ["./src/hooks/*"]
|
|
},
|
|
"target": "ES2017"
|
|
},
|
|
"include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|