theatre/devEnv/tsconfig.json
Aria Minaei fdd7963bb2 Add a tsconfig to /devEnv
Now that /devEnv has more than one typescript file, it should have its own typescript project
2022-02-24 17:04:56 +01:00

12 lines
227 B
JSON

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