code-server/tsconfig.json

30 lines
473 B
JSON
Raw Normal View History

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