DefinitelyTyped/ace/tsconfig.json
Andy ae4fe7b6de Use "lib" in tsconfigs instead of "target". (#13968)
* Use "lib" in tsconfigs instead of "target".

Only add "dom" to libraries that need it. This is determined by a script, so many libraries that have "dom" maybe should not.

* Update new-package and readme

* Add back "target" where necessary
2017-01-18 07:51:51 -08:00

39 lines
990 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/anchor.ts",
"test/background_tokenizer.ts",
"test/default.ts",
"test/document.ts",
"test/edit_session.ts",
"test/editor1.ts",
"test/editor_highlight_selected_word.ts",
"test/editor_navigation.ts",
"test/editor_text_edit.ts",
"test/multi_select.ts",
"test/placeholder.ts",
"test/range.ts",
"test/range_list.ts",
"test/search.ts",
"test/selection.ts",
"test/token_iterator.ts",
"test/virtual_renderer.ts"
]
}