Files
ballistic-builder/tsconfig.json

50 lines
1.0 KiB
JSON
Raw Normal View History

2024-11-14 12:45:58 -05:00
{
"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,
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-11-15 15:58:34 -05:00
"@/*": ["./*"],
"@/components/*": [
"./app/components/*"
],
"@/layouts/*": [
"./app/components/layouts/*"
],
"@/fragments/*": [
"./app/Fragments/*"
],
"@/lib/*": [
"./app/lib/*"
],
"@/scss/*": [
"./scss/*"
],
"@/admin/*": [
"./app/components/Admin/*"
],
"@/products/*": [
"./app/components/Products/*"
]
},
2024-11-14 12:45:58 -05:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}