From fdd7963bb2ad0789e521a8540fab01286220969c Mon Sep 17 00:00:00 2001 From: Aria Minaei Date: Thu, 24 Feb 2022 17:04:56 +0100 Subject: [PATCH] Add a tsconfig to /devEnv Now that /devEnv has more than one typescript file, it should have its own typescript project --- .eslintrc.js | 1 + devEnv/tsconfig.json | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 devEnv/tsconfig.json diff --git a/.eslintrc.js b/.eslintrc.js index 537dd85..ac55e77 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -51,6 +51,7 @@ module.exports = { './packages/*/tsconfig.json', './packages/*/devEnv/tsconfig.json', './examples/*/tsconfig.json', + './devEnv/tsconfig.json', ], }, rules: { diff --git a/devEnv/tsconfig.json b/devEnv/tsconfig.json new file mode 100644 index 0000000..a93818d --- /dev/null +++ b/devEnv/tsconfig.json @@ -0,0 +1,12 @@ +{ + "extends": "../tsconfig.base.json", + "compilerOptions": { + "outDir": "dist", + "lib": ["ESNext", "DOM"], + "rootDir": ".", + "types": ["node"], + "noEmit": true, + "target": "es6", + "composite": true + } +}