UNPKG

react-garden

Version:

React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.

38 lines (37 loc) 1.16 kB
{ "compilerOptions": { "typeRoots": ["node_modules/@types", "src/types"], "target": "es5", "lib": ["dom", "dom.iterable", "esnext", "es2015.iterable"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "preserve", // "jsxImportSource": "@emotion/react", "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": false, "downlevelIteration": true, "incremental": true, // "baseUrl": "src", "baseUrl": ".", "paths": { "~/*": ["src/*"], // preferable (nuxt + npm) "@/*": ["src/*"], "-||-*": ["assets/*"] // threed // "~/components/*": ["components/*"] // example } }, "exclude": ["node_modules"], // does this even work ?? // "include": ["src"], "include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx"] }