mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
* 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>
25 lines
481 B
JSON
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"
|
|
]
|
|
}
|