Files
ballistic-builder/tsconfig.json

92 lines
1.7 KiB
JSON
Raw Normal View History

2024-11-14 12:45:58 -05:00
{
"compilerOptions": {
2024-12-20 09:49:54 -05:00
"target": "ESNext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-11-14 12:45:58 -05:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
2024-12-20 09:49:54 -05:00
"module": "commonjs",
2024-11-14 12:45:58 -05:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
2024-11-20 16:09:31 -05:00
"baseUrl": ".",
2024-11-14 12:45:58 -05:00
"plugins": [
{
"name": "next"
}
],
"paths": {
2025-01-28 15:09:06 -05:00
"@/*": ["./src/*"],
"@src/*": [
2025-01-28 15:09:06 -05:00
"./src/*",
2024-12-20 09:49:54 -05:00
],
2024-11-21 15:24:37 -05:00
"@/db/*": [
2024-12-20 09:49:54 -05:00
"./src/db/*"
],
2024-12-12 00:04:14 -05:00
"@queries/*": [
2024-12-20 09:49:54 -05:00
"./src/db/queries/*"
],
2024-12-12 00:04:14 -05:00
"@schemas/*": [
2024-12-20 09:49:54 -05:00
"./src/drizzle/schema/*"
],
"@db/*": [
2024-12-20 09:49:54 -05:00
"./src/db/*"
],
"@types/*": [
2025-01-13 17:24:58 -05:00
"./src/lib/types/*"
2024-12-20 09:49:54 -05:00
],
"@components/*": [
2024-12-11 16:50:34 -05:00
"./src/components/*",
"./src/components/ui/*",
"./src/components/Brands/*",
"./src/app/components/*"
],
2025-01-19 23:49:48 -05:00
"@siteInfo/*": [
"./src/app/(siteInfo)/*",
],
"@actions/*": [
2024-12-11 16:50:34 -05:00
"./src/actions/*"
2024-11-15 15:58:34 -05:00
],
"@layouts/*": [
2024-12-11 16:50:34 -05:00
"./src/components/layouts/*"
2024-11-15 15:58:34 -05:00
],
"@fragments/*": [
2024-12-11 16:50:34 -05:00
"./src/app/Fragments/*"
2024-11-15 15:58:34 -05:00
],
"@lib/*": [
2024-11-26 00:14:49 -05:00
"@lib/*",
2024-12-11 16:50:34 -05:00
"./src/lib/*"
2024-11-15 15:58:34 -05:00
],
2024-12-11 23:26:14 -05:00
"@styles/*": [
"./src/styles/*"
],
"scss/*": [
"./src/scss/*"
2024-11-15 15:58:34 -05:00
],
"admin/*": [
2024-12-11 16:50:34 -05:00
"./src/components/Admin/*"
2024-11-15 15:58:34 -05:00
],
"products/*": [
2024-12-11 16:50:34 -05:00
"./src/components/Products/*"
2024-11-15 15:58:34 -05:00
]
},
2024-12-20 09:49:54 -05:00
"moduleResolution": "node"
2024-11-14 12:45:58 -05:00
},
2024-12-20 09:49:54 -05:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2024-11-14 12:45:58 -05:00
}