49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@cms/*": ["cms/*"],
|
|
"@components/*": ["components/*"],
|
|
"@i18n/*": ["i18n/*"],
|
|
"@lib/*": ["lib/*"],
|
|
"@types/*": ["types/*"],
|
|
"@server/*": ["server/*"],
|
|
"@extensions/*": ["src/extensions/*"],
|
|
"@theme/*": ["src/theme/*"],
|
|
"@templates/*": ["src/templates/*"],
|
|
"@src/*": ["src/*"]
|
|
},
|
|
"types": ["node"],
|
|
"plugins": [{ "name": "next" }]
|
|
},
|
|
"include": [
|
|
"app",
|
|
"cms",
|
|
"components",
|
|
"i18n",
|
|
"lib",
|
|
"ui",
|
|
"src",
|
|
"server",
|
|
"src",
|
|
"types",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|