woodpecker/web/tsconfig.json

21 lines
535 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"types": ["vite-svg-loader", "vite/client"],
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": ["esnext", "dom"],
"paths": {
"~/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["node_modules", "**/__tests__/**/*", "**/dist/**/*"]
}