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:
parent
0d4d0c446e
commit
fdd7963bb2
2 changed files with 13 additions and 0 deletions
|
@ -51,6 +51,7 @@ module.exports = {
|
||||||
'./packages/*/tsconfig.json',
|
'./packages/*/tsconfig.json',
|
||||||
'./packages/*/devEnv/tsconfig.json',
|
'./packages/*/devEnv/tsconfig.json',
|
||||||
'./examples/*/tsconfig.json',
|
'./examples/*/tsconfig.json',
|
||||||
|
'./devEnv/tsconfig.json',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
|
|
12
devEnv/tsconfig.json
Normal file
12
devEnv/tsconfig.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"extends": "../tsconfig.base.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "dist",
|
||||||
|
"lib": ["ESNext", "DOM"],
|
||||||
|
"rootDir": ".",
|
||||||
|
"types": ["node"],
|
||||||
|
"noEmit": true,
|
||||||
|
"target": "es6",
|
||||||
|
"composite": true
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue