mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
22 lines
562 B
JSON
22 lines
562 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": ["src/**/*.ts", "src/**/*.vue", "src/**/*.d.ts"],
|
|
"exclude": ["node_modules"],
|
|
"types": ["node", "lodash", "js-cookie", "vue-router", "vue"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"lib": ["dom", "esnext"],
|
|
"baseUrl": ".",
|
|
"noImplicitAny": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
"./src/plugins/pinia.d.ts",
|
|
"./src/types/main.d.ts",
|
|
"vite/client"
|
|
]
|
|
}
|
|
}
|