-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
27 lines (25 loc) · 905 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "@tsconfig/ember/tsconfig.json",
"compilerOptions": {
// allow declarations to be emitted when despite having glint-nocheck directives.
// See https://github.com/typed-ember/glint/issues/599
"noEmitOnError": false,
"declarationDir": "declarations",
// The combination of `baseUrl` with `paths` allows Ember's classic package
// layout, which is not resolvable with the Node resolution algorithm, to
// work with TypeScript.
"baseUrl": ".",
"paths": {
"dummy/tests/*": ["tests/*"],
"dummy/*": ["tests/dummy/app/*", "app/*"],
"ember-popper-modifier": ["addon"],
"ember-popper-modifier/*": ["addon/*"],
"ember-popper-modifier/test-support": ["addon-test-support"],
"ember-popper-modifier/test-support/*": ["addon-test-support/*"],
"*": ["types/*"]
}
},
"glint": {
"environment": "ember-loose"
}
}