Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Restore the webapp directory from the mattermost-plugin-starter-template to enable frontend development. Replace all npm/NPM references with bun across the Makefile, build/setup.mk, and golangci-lint config. Add the webapp bundle_path back to plugin.json. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
678 B
JSON
34 lines
678 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"baseUrl": "./src",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react"
|
|
},
|
|
"include": [
|
|
"src",
|
|
"tests"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"!node_modules/@types"
|
|
]
|
|
}
|