mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-10-31 22:38:49 +00:00
89c826f401
Use latest to fix issues in #3376
23 lines
589 B
JSON
23 lines
589 B
JSON
{
|
|
"extends": "@tsconfig/docusaurus/tsconfig.json",
|
|
"include": ["src", "types"],
|
|
"exclude": ["node_modules", "**/__tests__/**/*", "**/dist/**/*", "src/theme"],
|
|
"compilerOptions": {
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"moduleResolution": "Node16",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"module": "Node16",
|
|
"target": "ES6",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"rootDir": "src",
|
|
"pretty": true,
|
|
"noEmit": false
|
|
}
|
|
}
|