Files
ballistic-builder/tsconfig.json

54 lines
1.1 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": {
2024-11-21 15:24:37 -05:00
"@/*": [
"./src/*"],
"@/db/*": [
"./src/db/*"],
"components/*": [
2024-11-20 16:09:31 -05:00
"/src/app/components/*"
2024-11-15 15:58:34 -05:00
],
"layouts/*": [
"/src/app/components/layouts/*"
2024-11-15 15:58:34 -05:00
],
"fragments/*": [
"/src/app/Fragments/*"
2024-11-15 15:58:34 -05:00
],
"lib/*": [
"/src/app/lib/*"
2024-11-15 15:58:34 -05:00
],
"scss/*": [
"./src/scss/*"
2024-11-15 15:58:34 -05:00
],
"admin/*": [
"src/components/Admin/*"
2024-11-15 15:58:34 -05:00
],
"products/*": [
"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"]
}