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

33 lines
553 B
JSON
Raw Normal View History

2019-01-08 01:46:19 +01:00
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"baseUrl": ".",
"rootDir": ".",
"jsx": "react",
2019-01-08 01:46:19 +01:00
"outDir": "dist",
"declaration": true,
"sourceMap": true,
"strict": true,
2019-02-20 19:54:26 +01:00
"resolveJsonModule": true,
2019-01-08 01:46:19 +01:00
"experimentalDecorators": true,
"importHelpers": true,
2019-01-11 19:58:25 +01:00
"plugins": [
{
"name": "typescript-tslint-plugin"
2019-01-11 19:58:25 +01:00
}
],
2019-01-08 01:46:19 +01:00
"paths": {
"@coder/*": [
2019-01-15 00:19:29 +01:00
"./packages/*"
2019-01-08 01:46:19 +01:00
],
"vs/*": [
"./lib/vscode/src/vs/*"
],
"node-pty": [
"./packages/protocol/node_modules/node-pty-prebuilt"
2019-01-08 01:46:19 +01:00
]
2019-01-11 18:47:23 +01:00
}
2019-01-08 01:46:19 +01:00
}
}