mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
this adds recommended extensions, a vscode workspace config, workspace settings & launch configs for mobile & web apps.
73 lines
1.6 KiB
Plaintext
73 lines
1.6 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"name": "✨ notesnook",
|
|
"path": ".."
|
|
},
|
|
{
|
|
"name": "🚀 @notesnook/mobile",
|
|
"path": "../apps/mobile"
|
|
},
|
|
{
|
|
"name": "🚀 @notesnook/web",
|
|
"path": "../apps/web"
|
|
},
|
|
{
|
|
"name": "🚀 @notesnook/desktop",
|
|
"path": "../apps/web/desktop"
|
|
},
|
|
{
|
|
"name": "🚀 @notesnook/web-clipper",
|
|
"path": "../extensions/web-clipper"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/clipper",
|
|
"path": "../packages/clipper"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/core",
|
|
"path": "../packages/core"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/crypto",
|
|
"path": "../packages/crypto"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/crypto-worker",
|
|
"path": "../packages/crypto-worker"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/editor",
|
|
"path": "../packages/editor"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/editor-mobile",
|
|
"path": "../packages/editor-mobile"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/logger",
|
|
"path": "../packages/logger"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/streamable-fs",
|
|
"path": "../packages/streamable-fs"
|
|
},
|
|
{
|
|
"name": "📦 @notesnook/theme",
|
|
"path": "../packages/theme"
|
|
}
|
|
],
|
|
"settings": {
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"javascript.format.enable": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "modificationsIfAvailable",
|
|
"eslint.packageManager": "npm",
|
|
"eslint.run": "onSave",
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"eslint.execArgv": ["--cache"]
|
|
}
|
|
}
|