forked from emberjs/ember-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsconfig.json
22 lines (22 loc) · 809 Bytes
/
jsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "@tsconfig/ember/tsconfig.json",
"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.
"allowJs": true,
"baseUrl": ".",
"paths": {
"ember-debug/deps/*": ["node_modules/*"],
"ember-debug/*": ["ember_debug/*"],
"ember-inspector/tests/*": ["tests/*"],
"ember-inspector/*": ["app/*", "lib/ui/app/*"],
"ui": ["lib/ui/addon"],
"ui/*": ["lib/ui/addon/*"],
"ui/test-support": ["lib/ui/addon-test-support"],
"ui/test-support/*": ["lib/ui/addon-test-support/*"],
"*": ["types/*"]
}
},
"include": ["app/**/*", "tests/**/*", "types/**/*", "lib/ui/**/*", "ember_debug/**/*"]
}