Closed
Description
First of, amazing job with this package.
So, I have this new project that I'm using typescript@2
and I decided to give @types
a shot too.
I have this test file that depends on jasmine, so I installed the types for it by running npm i --save-dev @types/jasmine
. It has the following content:
// my_app_test.ts
describe('my-app', () => {
console.log('yo');
});
If I run tsc
, it compiles just fine, no warnings, no errors - nothing. But, Atom keeps telling me Cannot find name 'describe'.
. So I figured it should be related to atom-typescript
.
Info
- os:
windows 7, 64bits
- atom:
1.9.8
- atom-typescript:
10.1.6
- tsconfig:
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"sourceMap": false
},
"exclude": [
"node_modules"
]
}
Thanks!
Metadata
Metadata
Assignees
Labels
No labels