diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-08 11:55:56 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-08 11:55:56 +0300 |
commit | 15e5ead2d15d1726772c82544462b0acbdb227fa (patch) | |
tree | 6c6326c66cb77bb6b0ded3f01b5b07efa17f8375 /tsconfig.json | |
parent | aebbead8badc33edb74201d00ad466e82b4dc283 (diff) | |
download | eslint-config-15e5ead2d15d1726772c82544462b0acbdb227fa.tar.xz eslint-config-15e5ead2d15d1726772c82544462b0acbdb227fa.zip |
Initial TypeScript
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ee95095 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ +{ + "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, + "strict": true, + "target": "ES5" + }, + "exclude": [ + "node_modules", + "dist" + ], + "include": [ + "src" + ] +} |