diff options
Diffstat (limited to 'web/source/tsconfig.json')
| -rw-r--r-- | web/source/tsconfig.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/web/source/tsconfig.json b/web/source/tsconfig.json index 2f85c03b2..f8720e2b6 100644 --- a/web/source/tsconfig.json +++ b/web/source/tsconfig.json @@ -84,7 +84,7 @@ /* Type Checking */ "strict": false, /* 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'. */ + "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ @@ -104,6 +104,10 @@ /* Completeness */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ - "skipLibCheck": true /* Skip type checking all .d.ts files. */ + "skipLibCheck": true, /* Skip type checking all .d.ts files. */ + + "plugins": [ + { "transform": "typia/lib/transform" } + ] } } |
