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