diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json index 8f3c656..8c3bc08 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,16 @@ { - "compilerOptions": { - "lib": ["es2015"] - } + "compileOnSave": false, + "compilerOptions": { + "lib": ["es2015"], + "strict": true, + "noEmit": true, + "declaration": true, + "moduleResolution": "node", + "skipLibCheck": true, + "esModuleInterop": true, + }, + "include": [ + "src/*.ts", + "test/*.ts" + ] } |
