mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-12 09:04:14 +02:00
11c667b9bf
This adds a rudimentary web clipper browser extension. It allows to save page titles and URLs into cards. URLs will be written into the first found card property of type 'url' (if any). Relates to: #438
28 lines
482 B
JSON
28 lines
482 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"incremental": false,
|
|
"outDir": "./dist",
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": [
|
|
"."
|
|
],
|
|
"exclude": [
|
|
".git",
|
|
"**/node_modules/*",
|
|
"dist",
|
|
"pack"
|
|
]
|
|
}
|