mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
52 lines
1.0 KiB
JSON
52 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"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,
|
|
"baseUrl": ".",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
|
|
"components/*": [
|
|
"/src/app/components/*"
|
|
],
|
|
"layouts/*": [
|
|
"/src/app/components/layouts/*"
|
|
],
|
|
"fragments/*": [
|
|
"/src/app/Fragments/*"
|
|
],
|
|
"lib/*": [
|
|
"/src/app/lib/*"
|
|
],
|
|
"scss/*": [
|
|
"./src/scss/*"
|
|
],
|
|
"admin/*": [
|
|
"src/components/Admin/*"
|
|
],
|
|
"products/*": [
|
|
"src/components/Products/*"
|
|
]
|
|
},
|
|
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|