-
-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathtsconfig.json
More file actions
20 lines (20 loc) · 673 Bytes
/
tsconfig.json
File metadata and controls
20 lines (20 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": "./tsconfig.common.json",
"compilerOptions": {
"rootDir": "${configDir}",
"emitDeclarationOnly": false,
"incremental": false,
"noEmit": true,
// To be used in the test fixtures
"resolveJsonModule": true,
// We want to speed up the CI run for all tests, which require us to use the
// `transpileOnly` mode for the `ts-node`. This change requires to treat types for each module
// independently, which is done by setting the `isolatedModules` flag to `true`.
"isolatedModules": true,
// Detect unused imports, variables, and functions
"noUnusedLocals": true
},
"ts-node": {
"transpileOnly": true
}
}