12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "compilerOptions": {
- "skipLibCheck": true,
- "allowSyntheticDefaultImports": true,
- "composite": true,
- "declaration": true,
- "esModuleInterop": true,
- "incremental": true,
- "jsx": "react",
- "module": "esnext",
- "moduleResolution": "node",
- "noEmitOnError": true,
- "noImplicitAny": true,
- "noUnusedLocals": true,
- "preserveWatchOutput": true,
- "resolveJsonModule": true,
- "outDir": "lib",
- "rootDir": "src",
- "strict": true,
- "strictNullChecks": true,
- "target": "es2017",
- "types": ["jest"]
- },
- "include": ["src/**/*"],
- "references": [
- {
- "path": "../application"
- },
- {
- "path": "../apputils"
- },
- {
- "path": "../docregistry"
- },
- {
- "path": "../filebrowser"
- },
- {
- "path": "../mainmenu"
- },
- {
- "path": "../settingregistry"
- },
- {
- "path": "../ui-components"
- }
- ],
- "extends": "../../tsconfigbase"
- }
|