mirror of
https://github.com/foambubble/foam.git
synced 2026-04-24 03:01:01 -04:00
* added support for graph middleware via local plugin * added support for parsing extension points / plugins * improved parser plugin and added docs * improved name of parameter * need to enable local plugins, and improved configuration system For security reasons local plugins are off by default. The feature can be enabled via a flag in the foam configuration, which has been expanded to support this case. The configuration system now reads a `config.json` file inside the `.foam` directory as well as a `~/.foam/config.json` file to configure the system. Only the user specific configuration file can be used to enable local plugins, as a security measure against malicious repos. * added prettier configuration file This ensures consistency across machines as well as an explicit source of truth
17 lines
305 B
JSON
17 lines
305 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"importHelpers": true,
|
|
"module": "commonjs",
|
|
"outDir": "lib",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"target": "es2017"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"references": [{ "path": "../foam-core" }]
|
|
}
|