feat: add analytics

This commit is contained in:
Kentai Radiquum 2024-08-18 20:21:36 +05:00
parent 33d34938c6
commit 6d4d320da8
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
9 changed files with 67 additions and 15 deletions

View file

@ -1,10 +1,6 @@
{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
@ -27,16 +23,15 @@
"#/api/*": ["api/*"],
"#/store/*": ["store/*"],
"#/hooks/*": ["hooks/*"],
"#/pages/*": ["pages/*"],
},
"#/pages/*": ["pages/*"]
}
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx"
"**/*.tsx",
"next.config.js"
],
"exclude": [
"node_modules"
]
"exclude": ["node_modules"]
}