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