Saltearse al contenido
sern

Good to Know

Esta página aún no está disponible en tu idioma.

sern.config.json

A sern.config.json, although not necessary, allows your project to communicate with our cli.

For example, when installing TypeScript plugins, the language property is necessary to install from our open source repository.

Using the CLI and running sern init --sync on pre-existing projects should install this file in the your project.

Or, if this is a brand-new project, sern init automatically installs it.

sern.config.json
1
{
2
"language": "typescript",
3
"paths": {
4
"base": "src",
5
"commands": "commands"
6
}
7
}