DefinitelyTyped/types/ref-struct/tsconfig.json
Li Yin 9dc3b08389 [ref-struct]: add opt parameter to allow create packed struct (#21932)
* [ref-struct]: add opt parameter to allow create packed struct

* Set TypeScript version to 2.2 for package depending on ref-struct
2018-01-02 13:08:44 -08:00

23 lines
491 B
JSON

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