DefinitelyTyped/types/matrix-js-sdk/tsconfig.json
Huan (李卓桓) b20d3d2e1f
Create a new package: Matrix JS SDK (matrix-js-sdk) (#42673)
* init matrix-js-sdk

* make linter happy

* pass the tsc testing

* add create client

* make linter happy

* linting

* linting
2020-02-27 21:52:27 -08:00

25 lines
527 B
JSON

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