2019-01-08 07:46:19 +07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"rootDir": ".",
|
2019-02-22 00:55:42 +07:00
|
|
|
"jsx": "react",
|
2019-01-08 07:46:19 +07:00
|
|
|
"outDir": "dist",
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2019-02-21 01:54:26 +07:00
|
|
|
"resolveJsonModule": true,
|
2019-01-08 07:46:19 +07:00
|
|
|
"experimentalDecorators": true,
|
2019-03-27 01:01:25 +07:00
|
|
|
"importHelpers": true,
|
2019-01-12 01:58:25 +07:00
|
|
|
"plugins": [
|
|
|
|
{
|
2019-03-30 06:44:04 +07:00
|
|
|
"name": "typescript-tslint-plugin"
|
2019-01-12 01:58:25 +07:00
|
|
|
}
|
|
|
|
],
|
2019-01-08 07:46:19 +07:00
|
|
|
"paths": {
|
|
|
|
"@coder/*": [
|
2019-01-15 06:19:29 +07:00
|
|
|
"./packages/*"
|
2019-01-08 07:46:19 +07:00
|
|
|
],
|
|
|
|
"vs/*": [
|
|
|
|
"./lib/vscode/src/vs/*"
|
2019-03-27 01:01:25 +07:00
|
|
|
],
|
|
|
|
"node-pty": [
|
|
|
|
"./packages/protocol/node_modules/node-pty-prebuilt"
|
2019-01-08 07:46:19 +07:00
|
|
|
]
|
2019-01-12 00:47:23 +07:00
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
}
|