12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "declaration": true,
- "target": "es5",
- "alwaysStrict": true,
- "noImplicitAny": true,
- "noImplicitThis": true,
- "sourceMap": false,
- "noUnusedLocals": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "module": "CommonJS",
- "esModuleInterop": true,
- "skipLibCheck": true,
- "moduleResolution": "node",
- "importHelpers": true,
- "noEmitHelpers": true,
- "allowSyntheticDefaultImports": true,
- "jsx": "react",
- "lib": [ "dom", "esnext.asynciterable", "es2022" ],
- "rootDir": "src",
- "outDir": "./lib/commonjs"
- },
- "include": [ "src/TmImageRenderer/*" ],
- "exclude": [
- "node_modules"
- ]
- }
|