38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@public/*": [ "./public/*" ],
|
|
"@content/*": [ "./public/content/*" ],
|
|
"@meta/*": [ "./public/content/meta/*" ],
|
|
"@fonts/*": [ "./public/fonts/*" ],
|
|
"@icons/*": [ "./public/icons/*" ],
|
|
"@images/*": [ "./public/images/*" ],
|
|
"@src/*": [ "./src/*" ],
|
|
"@components/*": [ "./src/components/*" ],
|
|
"@libs/*": [ "./src/libs/*" ],
|
|
"@pages/*": [ "./src/pages/*" ],
|
|
"@api/*": [ "./src/pages/api/*"],
|
|
"@styles/*": [ "./src/styles/*.css", "./src/styles/*.scss" ],
|
|
"@modules/*": [ "./src/styles/modules/*.module.css", "./src/styles/modules/*.module.scss" ],
|
|
"@root/*": [ "./*" ]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|