-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 1.15 KB
/
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
28
29
30
31
32
33
{
"extends": "@tsconfig/ember/tsconfig.json",
"glint": {
"environment": ["ember-loose", "ember-template-imports"]
},
"compilerOptions": {
// 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/*"],
"@prysmex-engineering/ember-mapbox-gl": ["addon"],
"@prysmex-engineering/ember-mapbox-gl/*": ["addon/*"],
"@prysmex-engineering/ember-mapbox-gl/test-support": [
"addon-test-support"
],
"@prysmex-engineering/ember-mapbox-gl/test-support/*": [
"addon-test-support/*"
],
"*": ["types/*"]
},
//These are copied from the tsconfig.declarations.json file since glint doesn't support different configs yet
"declarationDir": "declarations",
"emitDeclarationOnly": true, // This probably isn't doing anything under Glint
"noEmit": false,
"noEmitOnError": false,
"rootDir": "."
},
"exclude": ["tests/dummy"],
"types": ["ember-source/types"]
}