summaryrefslogtreecommitdiffhomepage
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json50
1 files changed, 28 insertions, 22 deletions
diff --git a/tsconfig.json b/tsconfig.json
index c44b729..222535d 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,24 +1,30 @@
{
- "compilerOptions": {
- "baseUrl": ".",
- "inlineSourceMap": true,
- "inlineSources": true,
- "module": "ESNext",
- "target": "ES6",
- "allowJs": true,
- "noImplicitAny": true,
- "moduleResolution": "node",
- "importHelpers": true,
- "isolatedModules": true,
- "strictNullChecks": true,
- "lib": [
- "DOM",
- "ES5",
- "ES6",
- "ES7"
- ]
- },
- "include": [
- "**/*.ts"
- ]
+ "compilerOptions": {
+ "baseUrl": "src",
+ "inlineSourceMap": true,
+ "inlineSources": true,
+ "module": "ESNext",
+ "target": "ES6",
+ "allowJs": true,
+ "noImplicitAny": true,
+ "noImplicitThis": true,
+ "noImplicitReturns": true,
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "noUncheckedIndexedAccess": true,
+ "isolatedModules": true,
+ "strictNullChecks": true,
+ "strictBindCallApply": true,
+ "allowSyntheticDefaultImports": true,
+ "useUnknownInCatchVariables": true,
+ "lib": [
+ "DOM",
+ "ES5",
+ "ES6",
+ "ES7"
+ ]
+ },
+ "include": [
+ "src/**/*.ts"
+ ]
}