diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 13:30:54 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 13:30:54 +0300 |
commit | 9509148e9dc5120f2026c0337a880089734d8c80 (patch) | |
tree | 30456000766e1b8f26a84920dd6030249bb7ab94 /tsconfig.json | |
parent | 5b5f4751a9defeb43eba6df067c7100048193513 (diff) | |
download | eslint-config-9509148e9dc5120f2026c0337a880089734d8c80.tar.xz eslint-config-9509148e9dc5120f2026c0337a880089734d8c80.zip |
Formed structure of the repository
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/tsconfig.json b/tsconfig.json index ee95095..69a27e6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,21 @@ { "compilerOptions": { - "allowJs": true, - "checkJs": true, - "declaration": true, "downlevelIteration": true, "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, "module": "ES2015", "moduleResolution": "Node", "newLine": "lf", "noImplicitReturns": true, "noUnusedLocals": true, "noUnusedParameters": true, - "outDir": "dist", "removeComments": true, - "sourceMap": true, + "resolveJsonModule": true, + "sourceMap": false, "strict": true, "target": "ES5" }, "exclude": [ - "node_modules", - "dist" + "node_modules" ], "include": [ "src" |