mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-24 18:36:14 +03:00
35 lines
568 B
JSON
35 lines
568 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"WebWorker",
|
|
"DOM"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"types": [
|
|
"vite/client"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue"
|
|
]
|
|
}
|