DefinitelyTyped/types/ember/tsconfig.json
Chris Krycho cfa60b7c66 Ember: Make RegistryProxyMixin.register options optional. (#25076)
* Ember: Make `RegistryProxyMixin.register` options optional.

* Add tests for register change.
2018-04-17 18:12:12 -07:00

55 lines
1.3 KiB
JSON
Executable File

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/lib/assert.ts",
"test/application.ts",
"test/application-instance.ts",
"test/ember-tests.ts",
"test/error.ts",
"test/event.ts",
"test/extend.ts",
"test/create.ts",
"test/object.ts",
"test/observable.ts",
"test/mixin.ts",
"test/reopen.ts",
"test/detect.ts",
"test/detect-instance.ts",
"test/array.ts",
"test/array-ext.ts",
"test/array-proxy.ts",
"test/helper.ts",
"test/computed.ts",
"test/component.ts",
"test/function-ext.ts",
"test/inject.ts",
"test/utils.ts",
"test/transition.ts",
"test/router.ts",
"test/run.ts",
"test/test.ts",
"test/controller.ts",
"test/route.ts",
"test/view-utils.ts"
]
}