Files
ballistic-builder/tsconfig.json

51 lines
1.0 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": {
"@/*": ["./*"],
"components/*": [
"/src/app/components/*"
],
"layouts/*": [
"/src/app/components/layouts/*"
],
"fragments/*": [
"/src/app/Fragments/*"
],
"lib/*": [
"/src/app/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"]
}