41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@/components/*": ["./src/components/*"],
|
|
"@/styles/*": ["./src/styles/*"],
|
|
"@/content/*": ["./content/*"],
|
|
"@/utils/*": ["./src/utils/*"],
|
|
"@/lib/*": ["./src/lib/*"],
|
|
"@/hooks/*": ["./src/hooks/*"],
|
|
"@/types/*": ["./src/types/*"],
|
|
"@/config/*": ["./src/config/*"],
|
|
"@/app/*": ["./src/app/*"],
|
|
"@/tina/*": ["./tina/*"],
|
|
"@/services/*": ["./src/services/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true,
|
|
"target": "ES2017"
|
|
},
|
|
"include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|