Files
Hank Majoros dba3a2dc33 create new types for ember-cli-fastboot library (#58050)
* add type definitions for ember-cli-fastboot

* add comment block for services/fastboot.d.ts

* write tests

* fix CI issue around tsconfig files array

* remove tslint rules overrides

* Apply suggestions from code review

Co-authored-by: Chris Krycho <hello@chriskrycho.com>

* create actual FastBoot global type, address PR feedback

* turn on strict: true instead of individual rules

* fix FastBoot.config type to match method documentation in readme

* Apply suggestions from code review from @ckrycho

Co-authored-by: Chris Krycho <hello@chriskrycho.com>

* add v2 types

* Revert "add v2 types"

This reverts commit ad3e1c2fa1d0c3e62c54e78798a78c35c3e5b44c.

* re-trigger github checks

Co-authored-by: Henry Majoros <hmajoros@linkedin.com>
Co-authored-by: Chris Krycho <hello@chriskrycho.com>
2022-01-19 11:31:22 -08:00

25 lines
481 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"strict": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"paths": {
"@ember/*": ["ember__*"]
},
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/ember-cli-fastboot-tests.ts"
]
}