UNPKG

threepipe

Version:

A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.

43 lines (42 loc) 1.05 kB
{ "compilerOptions": { "baseUrl": "./src", "rootDir": "./src", "allowJs": false, "checkJs": false, "skipLibCheck": true, "allowSyntheticDefaultImports": true, "experimentalDecorators": true, "isolatedModules": true, "module": "es2020", "noImplicitAny": true, "declaration": true, "declarationMap": true, "declarationDir": "dist", "outDir": "dist", "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "removeComments": false, "preserveConstEnums": true, "moduleResolution": "bundler", "emitDecoratorMetadata": false, "sourceMap": true, "target": "ES2020", "strictNullChecks": true, "lib": [ "es2020", "esnext", "dom" ], "jsx": "react" }, "include": [ "./src/**/*", ], "exclude": [ "node_modules", "**/*.spec.ts", "dist" ] }