DefinitelyTyped/types/ember/tsconfig.json
Scott Kidder 4131598ed6 [@types/ember] add ember__template (#38571)
* [@types/ember] add ember__template

* [@types/ember] move -private/handlebars into @ember/template

* [@types/ember] fix SafeString namespacing

Co-Authored-By: Mike North <michael.l.north@gmail.com>
2019-10-03 14:22:21 -07:00

98 lines
3.2 KiB
JSON
Executable File

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"paths": {
"@ember/application": ["ember__application"],
"@ember/application/*": ["ember__application/*"],
"@ember/array": ["ember__array"],
"@ember/array/*": ["ember__array/*"],
"@ember/component": ["ember__component"],
"@ember/component/*": ["ember__component/*"],
"@ember/controller": ["ember__controller"],
"@ember/debug": ["ember__debug"],
"@ember/debug/*": ["ember__debug/*"],
"@ember/engine": ["ember__engine"],
"@ember/engine/*": ["ember__engine/*"],
"@ember/error": ["ember__error"],
"@ember/object": ["ember__object"],
"@ember/object/*": ["ember__object/*"],
"@ember/polyfills": ["ember__polyfills"],
"@ember/routing": ["ember__routing"],
"@ember/routing/*": ["ember__routing/*"],
"@ember/runloop": ["ember__runloop"],
"@ember/runloop/*": ["ember__runloop/*"],
"@ember/service": ["ember__service"],
"@ember/string": ["ember__string"],
"@ember/string/*": ["ember__string/*"],
"@ember/template": ["ember__template"],
"@ember/template/*": ["ember__template/*"],
"@ember/test": ["ember__test"],
"@ember/test/*": ["ember__test/*"],
"@ember/utils": ["ember__utils"],
"@ember/utils/*": ["ember__utils/*"]
},
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/lib/assert.ts",
"test/private/computed-tests.ts",
"test/private/observable-tests.ts",
"test/techniques/properties-from-this.ts",
"test/access-modifier.ts",
"test/application-instance.ts",
"test/application.ts",
"test/array-ext.ts",
"test/array-proxy.ts",
"test/array.ts",
"test/component.ts",
"test/computed.ts",
"test/controller.ts",
"test/core-object.ts",
"test/create-negative.ts",
"test/create.ts",
"test/data-adapter.ts",
"test/debug.ts",
"test/detect-instance.ts",
"test/detect.ts",
"test/ember-module-tests.ts",
"test/ember-tests.ts",
"test/engine-instance.ts",
"test/engine.ts",
"test/error.ts",
"test/event.ts",
"test/extend.ts",
"test/function-ext.ts",
"test/helper.ts",
"test/inject.ts",
"test/mixin.ts",
"test/object.ts",
"test/observable.ts",
"test/reopen.ts",
"test/route.ts",
"test/router.ts",
"test/run.ts",
"test/string-ext.ts",
"test/string.ts",
"test/test.ts",
"test/transition.ts",
"test/utils.ts",
"test/view-utils.ts"
]
}