🚀 Feature request
Command (mark with an x)
Description
Current, we can use describe, it, test, expect in app. Because we use "types": ["jasmine","node"] in tsconfig.json. And this is for tsconfig.spec.json, not for tsconfig.app.json.
In order to get a better IDE experience, we can use “Solution Style” tsconfig.json Files in TypeScript 3.9
🚀 Feature request
Command (mark with an
x)Description
Current, we can use
describe,it,test,expectin app. Because we use"types": ["jasmine","node"]in tsconfig.json. And this is fortsconfig.spec.json, not fortsconfig.app.json.In order to get a better IDE experience, we can use “Solution Style” tsconfig.json Files in TypeScript 3.9
{ // tsconfig.app.json "compilerOptions": { "baseUrl": "./", "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "downlevelIteration": true, "experimentalDecorators": true, "module": "es2020", "moduleResolution": "node", "importHelpers": true, "target": "es2015", "lib": [ "es2018", "dom" ], "types": [] }, "files": [ "src/main.ts", "src/polyfills.ts" ], "include": [ "src/**/*.d.ts" ] }{ //tsconfig.spec.json "extends": "./tsconfig.app.json", "compilerOptions": { "outDir": "./out-tsc/spec", "types": [ "jasmine", "node" ] }, "files": [ "src/test.ts", "src/polyfills.ts" ], "include": [ "src/**/*.spec.ts", "src/**/*.d.ts" ] }