mirror of https://git.tuxpa.in/a/code-server.git
33 lines
553 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|