UNPKG

lcap

Version:

CLI for Lcap Projects, including Application and UI Library.

33 lines 950 B
{ "compilerOptions": { "target": "ES2020", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": false, "noEmit": true, "jsx": "react", "jsxFactory": "React.createElement", /* Linting */ "strict": true, "noUnusedLocals": false, "noUnusedParameters": false, "experimentalDecorators": true, "strictPropertyInitialization": false, "noFallthroughCasesInSwitch": true, "emitDecoratorMetadata": true, "noImplicitAny": false, "paths": { "@/*": ["./src/*"], "@components/*": ["./src/components/*"], "@lcap-ui/*": ["./.lcap/lcap-ui/package/*"] } }, "include": ["src/**/*.ts", "src/**/*.tsx", "ide/**/*.ts", "ide/**/*.tsx"], "references": [] }