outline-server/src/server_manager/tsconfig.json
2022-03-25 13:44:36 -04:00

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"
]
}