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.
55 lines (53 loc) • 1.41 kB
JSON
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"isolatedModules": true,
"module": "es2020",
"noImplicitAny": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "dist",
"skipLibCheck": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"preserveConstEnums": true,
"moduleResolution": "node",
"emitDecoratorMetadata": false,
"sourceMap": false,
"inlineSources": false,
"mapRoot": ".",
"target": "ES2020",
"strictNullChecks": true,
"jsx": "react-jsx",
"allowImportingTsExtensions": false,
"paths": {
},
"lib": [
"es2020",
"esnext",
"dom"
],
"plugins": [{ "name": "typescript-plugin-css-modules" }]
},
"include": [
"./src/**/*",
"node_modules/@types/wicg-file-system-access/index.d.ts",
"website/**/*.ts",
"website/**/*.vue",
"website/**/*.md"
],
"exclude": [
"node_modules",
"dist",
"examples",
"experiments",
"**/*.spec.ts"
],
"vueCompilerOptions": {
"vitePressExtensions": [".md"],
}
}