-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 888 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 888 Bytes
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.json",
"compilerOptions": {
"target": "es2022",
"lib": ["DOM", "ES2022"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noEmitOnError": false,
"noEmit": true,
"module": "esnext",
"experimentalDecorators": true,
"paths": {
"dummy/tests/*": ["./tests/*"],
"dummy/*": ["./tests/dummy/app/*", "./app/*"],
"@sentry/ember": ["./addon"],
"@sentry/ember/*": ["./addon/*"],
"@sentry/ember/test-support": ["./addon-test-support"],
"@sentry/ember/test-support/*": ["./addon-test-support/*"],
"*": ["./types/*"]
}
},
"include": [
"./app/**/*",
"./addon/**/*",
"./tests/**/*",
"./types/**/*",
"./test-support/**/*",
"./addon-test-support/**/*"
]
}