Files
ballistic-builder/tsconfig.json

71 lines
1.5 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,
2024-11-20 16:09:31 -05:00
"baseUrl": ".",
2024-11-14 12:45:58 -05:00
"plugins": [
{
"name": "next"
}
],
"paths": {
"@src/*": [
2024-12-11 17:07:40 -05:00
"./src/*"],
2024-11-21 15:24:37 -05:00
"@/db/*": [
"./src/db/*"],
2024-12-12 00:04:14 -05:00
"@queries/*": [
"./src/db/queries/*"],
"@schemas/*": [
"./src/db/schema/*"],
"@db/*": [
2024-12-12 00:04:14 -05:00
"./src/db/*"],
"@types/*": [
2024-12-11 17:07:40 -05:00
"./src/types/*"],
"@components/*": [
2024-12-11 16:50:34 -05:00
"./src/components/*",
"./src/components/ui/*",
"./src/components/Brands/*"
],
"@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-11-14 12:45:58 -05:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}