mirror of
https://github.com/KotatsuApp/website.git
synced 2026-08-19 20:40:48 -07:00
refactor: set moduleResolution to 'bundler' in tsconfig chore: remove @rollup/rollup-linux-x64-gnu from the dependencies list fix: remove 'SOme' typo
15 lines
400 B
JSON
15 lines
400 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["vite/client", "@types/gtag.js"],
|
|
"paths": {
|
|
"@/*": ["./.vitepress/*"]
|
|
}
|
|
},
|
|
"include": [".vitepress/theme/**/*", "node_modules/vitepress/dist/client/theme-default/components/**/*.vue"]
|
|
}
|