c3dae929c6
* feat: mui support & basic theming * feat: entgamers favicon * feat: public images until dynamic content can be used * feat: entgamers & gaming assets * feat: eslint extra rules * feat: mui theme modifications * feat: fontawesome, gsap, bundle analyzer * feat: common interfaces * feat: basic layout * chore: upadted dependencies * chore: updated dependencies * feat: updated link styles * feat: layout now have better interfaces * feat: basic seo component * feat: static website * feat: env variable rules in .gitignore * feat: added lint to pre-commit
72 lines
1.3 KiB
JSON
72 lines
1.3 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",
|
|
"jsxImportSource": "@emotion/react",
|
|
"incremental": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@adapters/*": [
|
|
"adapters/*"
|
|
],
|
|
"@assets/*": [
|
|
"assets/*"
|
|
],
|
|
"@components/*": [
|
|
"components/*"
|
|
],
|
|
"@contexts/*": [
|
|
"contexts/*"
|
|
],
|
|
"@hooks/*": [
|
|
"hooks/*"
|
|
],
|
|
"@interfaces": [
|
|
"interfaces/"
|
|
],
|
|
"@pages/*": [
|
|
"pages/*"
|
|
],
|
|
"@public/*": [
|
|
"../public/*"
|
|
],
|
|
"@services/*": [
|
|
"services/*"
|
|
],
|
|
"@styles/*": [
|
|
"styles/*"
|
|
],
|
|
"@utilities/*": [
|
|
"utilities/*"
|
|
]
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"./types"
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|