-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.73 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
34
35
36
37
{
"excludeDirectories": ["**/node_modules"],
"compilerOptions": {
"preserveSymlinks": true,
"composite": true /* Enable constraints that allow a TypeScript project to be used with project references. */,
"incremental": true,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
/* Language and Environment */
"lib": ["ESNext", "DOM"],
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
/* Modules */
"module": "ESNext" /* Specify what module code is generated. */,
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
"declarationMap": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": true /* Enable all strict type-checking options. */,
"noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */,
"noFallthroughCasesInSwitch": true /* Enable error reporting for fallthrough cases in switch statements. */,
"noUncheckedIndexedAccess": true /* Include 'undefined' in index signature results */,
"noImplicitOverride": true /* Ensure overriding members in derived classes are marked with an override modifier. */ /* Skip type checking all .d.ts files. */,
"declaration": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"isolatedModules": true
},
"files": [],
"references": [
{
"path": "apps/web"
},
{
"path": "packages/lib"
}
]
}