28 lines
429 B
JSON
28 lines
429 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"plugins": [
|
|
{
|
|
"name": "tslint-language-service"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@coder/*": [
|
|
"./packages/*/src"
|
|
],
|
|
"vs/*": [
|
|
"./lib/vscode/src/vs/*"
|
|
]
|
|
}
|
|
}
|
|
}
|