Files
standardnotes-app-web/app/assets/javascripts/tsconfig.json
Baptiste Grob 993d241c72 feat: switch from npm to yarn (#500)
* feat: switch from npm to yarn

* fix: build

* fix: replace yarn run with yarn

* fix: nodejs version install in Docker image

* fix: initialize mobx state

Co-authored-by: Karol Sójko <karolsojko@gmail.com>
2020-12-08 14:59:22 +01:00

25 lines
591 B
JSON

{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"moduleResolution": "node",
"allowJs": true,
"noEmit": true,
"strict": true,
"isolatedModules": true,
"esModuleInterop": true,
"declaration": true,
"newLine": "lf",
"declarationDir": "../../../dist/@types",
"baseUrl": ".",
"paths": {
"%/*": ["../templates/*"],
"@/*": ["./*"],
"@Controllers/*": ["./controllers/*"],
"@Views/*": ["./views/*"],
"@Services/*": ["./services/*"],
"@node_modules/*": ["../../../node_modules/*"],
}
}
}