UNPKG

threepipe

Version:

A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.

47 lines (46 loc) 1.2 kB
{ "compilerOptions": { "baseUrl": "./", "allowJs": false, "checkJs": false, "skipLibCheck": true, "allowSyntheticDefaultImports": true, "experimentalDecorators": true, "isolatedModules": false, "module": "es2020", "noImplicitAny": true, "noImplicitOverride": false, "declaration": false, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "removeComments": false, "preserveConstEnums": true, "moduleResolution": "node", "emitDecoratorMetadata": true, "sourceMap": false, "paths": { "@threepipe/plugin-*": ["../plugins/*/src"], "@threepipe/plugins-*": ["../plugins/*/src"], "threepipe": ["../src/"] }, "target": "ES2020", "strictNullChecks": true, "lib": [ "es2020", "esnext", "dom" ], "jsx": "react" }, "include": [ "./**/*.ts", "./**/*.tsx" ], "exclude": [ "node_modules", "../dist/**/*", "../src/**/*", "**/*.spec.ts" ] }