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