mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 13:58:57 +00:00
21 lines
448 B
JSON
21 lines
448 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"removeComments": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"module": "commonjs",
|
|
"rootDir": "src",
|
|
"outDir": "build/server_manager/web_app/js",
|
|
"sourceMap": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/server_manager/electron_app/**/*.ts",
|
|
"src/metrics_server/**/*.ts",
|
|
"src/shadowbox/**/*.ts"
|
|
],
|
|
"compileOnSave": true
|
|
}
|