code-server/tsconfig.json
Asher 4887078423
Fix typescript tslint plugin
tslint-language-service is the deprecated version which we don't
actually even have listed in the package.json. typescript-tslint-plugin
is the new version.
2019-03-29 18:44:04 -05:00

33 lines
553 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"baseUrl": ".",
"rootDir": ".",
"jsx": "react",
"outDir": "dist",
"declaration": true,
"sourceMap": true,
"strict": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"importHelpers": true,
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
"paths": {
"@coder/*": [
"./packages/*"
],
"vs/*": [
"./lib/vscode/src/vs/*"
],
"node-pty": [
"./packages/protocol/node_modules/node-pty-prebuilt"
]
}
}
}