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