mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-04-19 23:37:41 +00:00
26 lines
604 B
JSON
26 lines
604 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
"skipLibCheck": true
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
},
|
|
"include": ["vite.config.*", "env.d.ts", "src/**/*", "src/**/*.vue"]
|
|
}
|