mirror of
https://github.com/rordaz/ColorTab.git
synced 2026-07-22 07:48:53 +00:00
- Added package.json for project metadata and dependencies. - Created styles.css for tab background coloring and context-menu swatches. - Added tsconfig.json for TypeScript configuration.
16 lines
364 B
JSON
16 lines
364 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["ES6", "DOM"]
|
|
},
|
|
"include": ["**/*.ts"]
|
|
}
|