UNPKG

create-rari-app

Version:

Create Runtime Accelerated Rendering Infrastructure (Rari) applications with no build configuration

35 lines (31 loc) 760 B
{ "compilerOptions": { "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "ES2020", "jsx": "react-jsx", "lib": ["ES2020", "DOM", "DOM.Iterable"], "moduleDetection": "force", "useDefineForClassFields": true, "module": "ESNext", /* Bundler mode */ "moduleResolution": "bundler", /* Path aliases */ "paths": { "*": ["./*"], "@/*": ["./src/*"] }, "allowImportingTsExtensions": true, /* Linting */ "strict": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "noEmit": true, "isolatedModules": true, "skipLibCheck": true }, "include": [ "src" ] }