tachiyomi-website/website/tsconfig.json
Alessandro Jean 0af948cd8d
Add initial analytics for downloads (#43)
* Add initial analytics for downloads.

* Change analytics events and enable it.

* Change to a custom ID.

* Use custom analytics plugin.

* Bound gtag to window.

* Update id for `kodo.moe`.
2023-09-10 15:30:57 -03:00

34 lines
846 B
JSON

{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"types": ["vite/client", "@types/gtag.js"],
"paths": {
"@/*": ["./docs/.vitepress/*"]
}
},
"include": [
"typings/**/*.d.ts",
"docs/**/*.vue",
"docs/**/*.tsx",
"docs/**/*.ts",
"docs/.**/**/*.ts",
"docs/.**/**/*.tsx",
"docs/.**/**/*.vue"
],
"exclude": ["**/node_modules/**", "**/dist/**"],
"extensions": [".js", ".ts", ".tsx", ".jsx", ".vue"],
"references": [{ "path": "./tsconfig.node.json" }],
"allowSyntheticDefaultImports": true
}