Add a tsconfig to /devEnv

Now that /devEnv has more than one typescript file, it should have its own typescript project
This commit is contained in:
Aria Minaei 2022-02-24 17:04:56 +01:00
parent 0d4d0c446e
commit fdd7963bb2
2 changed files with 13 additions and 0 deletions

View file

@ -51,6 +51,7 @@ module.exports = {
'./packages/*/tsconfig.json',
'./packages/*/devEnv/tsconfig.json',
'./examples/*/tsconfig.json',
'./devEnv/tsconfig.json',
],
},
rules: {

12
devEnv/tsconfig.json Normal file
View file

@ -0,0 +1,12 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"lib": ["ESNext", "DOM"],
"rootDir": ".",
"types": ["node"],
"noEmit": true,
"target": "es6",
"composite": true
}
}