Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/tsconfig.json

28 lines
429 B
JSON
Raw Normal View History

2019-01-08 01:46:19 +01:00
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"declaration": true,
"sourceMap": true,
"strict": true,
2019-01-11 19:58:25 +01:00
"importHelpers": true,
2019-01-08 01:46:19 +01:00
"experimentalDecorators": true,
2019-01-11 19:58:25 +01:00
"plugins": [
{
"name": "tslint-language-service"
}
],
2019-01-08 01:46:19 +01:00
"paths": {
"@coder/*": [
"./packages/*/src"
],
"vs/*": [
"./lib/vscode/src/vs/*"
]
2019-01-11 18:47:23 +01:00
}
2019-01-08 01:46:19 +01:00
}
}