tsconfig.json
{ "compilerOptions": { "composite": false, "module": "esnext", "target": "es5", "sourceMap": true, "incremental": true, "newLine": "LF", "noEmitHelpers": false, "noImplicitAny": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "outDir": "dist", "declaration": false, "preserveConstEnums": false, "pretty": true, "removeComments": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "allowUnusedLabels": false, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "allowUnreachableCode": false, "baseUrl": "./src", "allowJs": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "noImplicitUseStrict": false, "lib": ["es5", "es6", "es7", "esnext", "dom", "WebWorker"], "strictNullChecks": true, "importHelpers": false, "alwaysStrict": true, "strict": true, "strictBindCallApply": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "jsx": "react", "jsxFactory": "canva.create", "noErrorTruncation": true, "disableSizeLimit": true, "resolveJsonModule": true, "moduleResolution": "node", "tsBuildInfoFile": "dist/tsbuildinfo" }, "include": ["src/**/*"], "exclude": ["node_modules", "src/tests"]}