DefinitelyTyped/types/systemjs/tsconfig.json
Joel Denning 1387ad621b Add types for systemjs@6 (#39372)
* Add types for SystemJS@6

* Self review

* Fixing build

* Fixing things

* Self review

* Switching from namespace to const.

* Fixing tests

* Review feedback

* Merging namespace into const

* Removing unneeded suppression
2019-11-01 08:06:23 -07:00

24 lines
513 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"target": "es6",
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"systemjs-tests.ts"
]
}