-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
17 lines (17 loc) · 1.08 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"module": "NodeNext" /* Specify what module code is generated. */,
"baseUrl": "src" /* Specify the base directory to resolve non-relative module names. */,
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": true /* Enable error reporting for expressions and declarations with an implied 'any' type. */,
"strictNullChecks": true /* When type checking, take into account 'null' and 'undefined'. */,
"useUnknownInCatchVariables": true /* Default catch clause variables as 'unknown' instead of 'any'. */,
"noUnusedParameters": true /* Raise an error when a function parameter isn't read. */,
"allowUnreachableCode": false /* Disable error reporting for unreachable code. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"resolveJsonModule": true,
"allowImportingTsExtensions": true, //this works only with below noEmit set to true
"noEmit": true,
}
}