Files
matrix-js-sdk/tsconfig.json
T
Michael Telatynski db49cd8d13 Make the js-sdk conform to tsc --strict (#2835)
Co-authored-by: Faye Duxovni <fayed@matrix.org>
2022-11-03 12:50:05 +00:00

19 lines
360 B
JSON

{
"compilerOptions": {
"target": "es2016",
"experimentalDecorators": true,
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": false,
"noUnusedLocals": true,
"noEmit": true,
"declaration": true,
"strict": true
},
"include": [
"./src/**/*.ts",
"./spec/**/*.ts"
]
}