Files
DefinitelyTyped/types/aframe/tsconfig.json
Josh 05ee023521 🤖 Merge PR #60143 [three] r140 by @joshuaellis
* [three] – r129

* fix: export MathUtils under namespace in index

* fix: export Pass and FullScreenQuad from EffectComposer

* fix: use long export method to avoid ts bump

* r130

* feat: minor amends to r130

* [three] r131

* feat: add static slerp to Quaternion

* chore: update OTHER_FILES.txt

* chore: incl WebGLCubeUVMaps in exports

* minor fixes to current release

* [three]: r132 release

* three: r133

* Update OTHER_FILES.txt

* Update OTHER_FILES.txt

* Update OTHER_FILES.txt

* Update ArcballControls.d.ts

* feat: add default to `Intersection` generic

* chore: add test

* r134

* r135

* fix: tslint

* r136

* fix: export FramebufferTexture from THREE

* [three] r137

* [three] r138

* fix stupid OSS bot rule

* [three] r139

* Update types/three/examples/jsm/exporters/EXRExporter.d.ts

Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com>

* r140

* fix: add es2015.generator to aframe config

* fix: SavePass constructor

Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com>
2022-05-03 09:37:08 -07:00

29 lines
639 B
JSON
Executable File

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es5",
"dom",
"es2015.iterable",
"es2015.generator",
"es2015.promise"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/aframe-tests.ts",
"test/aframe-io-tests.ts"
]
}