mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-15 03:55:28 +00:00
2d3db3de28
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
40 lines
920 B
JSON
40 lines
920 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"types": ["vite-svg-loader", "vite/client"],
|
|
"sourceMap": true,
|
|
"useDefineForClassFields": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["esnext", "dom"],
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"src/**/*.json",
|
|
"tailwind.config.ts",
|
|
"vite.config.ts",
|
|
"postcss.config.js"
|
|
],
|
|
"exclude": ["node_modules", "**/__tests__/**/*", "**/dist/**/*"]
|
|
}
|