DefinitelyTyped/types/di/tsconfig.json
johnjbarton 98d94b19b1 Add new (pariial) typings for npm 'di' github 'node-di' (#27741)
These typings are adequate for the primary user of di, karma-runner.
The underlying project is deprecated and we will move to a new di system,
but these typings help document where we are today.
2018-08-03 10:45:02 -07:00

24 lines
483 B
JSON

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