* Initial plan * Create all plugin files and verify build Co-authored-by: felixfoertsch <6586185+felixfoertsch@users.noreply.github.com> * Fix HSV to RGB conversion to use actual brightness and extract magic number Co-authored-by: felixfoertsch <6586185+felixfoertsch@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: felixfoertsch <6586185+felixfoertsch@users.noreply.github.com>
20 lines
442 B
JSON
20 lines
442 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": ["ES2020"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|