Files
ballistic-builder/tsconfig.json

64 lines
1.3 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/*": [
"./src/*"],
"@/db/*": [
"./src/db/*"],
"@db/*": [
"./src/db/*"],
"@types/*": [
"./src/types/*"],
"@components/*": [
"./src/components/*",
"./src/components/ui/*",
"./src/components/Brands/*"
],
"@actions/*": [
"./src/actions/*"
],
"@layouts/*": [
"./src/components/layouts/*"
],
"@fragments/*": [
"./src/app/Fragments/*"
],
"@lib/*": [
"@lib/*",
"./src/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"]
}