mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-10 19:11:08 +00:00
21 lines
535 B
JSON
21 lines
535 B
JSON
|
{
|
||
|
"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/**/*"]
|
||
|
}
|