mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-08-04 14:37:34 +00:00
15 lines
369 B
JSON
15 lines
369 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018"
|
|
},
|
|
"extends": "../../tsconfig.json",
|
|
"rootDir": ".",
|
|
"include": ["**/*.ts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"web_app/gallery_app",
|
|
// FIXME: these tests fail with a runtime error because app.ts depends on
|
|
// polymer, which targets the browser and uses ES6 imports.
|
|
"web_app/app.spec.ts"
|
|
]
|
|
}
|