mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-08-04 14:37:34 +00:00
23 lines
513 B
JSON
23 lines
513 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"removeComments": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"moduleResolution": "Node",
|
|
"rootDir": "src",
|
|
"outDir": "build/server_manager/web_app/js",
|
|
"sourceMap": true,
|
|
"experimentalDecorators":true,
|
|
"allowJs": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/server_manager/electron_app/**/*.ts",
|
|
"src/metrics_server/**/*.ts",
|
|
"src/shadowbox/**/*.ts"
|
|
],
|
|
"compileOnSave": true
|
|
}
|