|
@@ -0,0 +1,46 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+ <head>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <base href="../../../" />
|
|
|
+ <script src="list.js"></script>
|
|
|
+ <script src="page.js"></script>
|
|
|
+ <link type="text/css" rel="stylesheet" href="page.css" />
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <h1>[name]</h1>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ three.js is a JavaScript-based library. However, it's possible to use it in a TypeScript project, as the library
|
|
|
+ exposes [link:https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html Declaration Files] (*d.ts* files).
|
|
|
+ </p>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ A minimal configuration is required for the TypeScript compiler to
|
|
|
+ discover three.js types.<br>
|
|
|
+ You will need to set the [link:https://www.typescriptlang.org/docs/handbook/module-resolution.html moduleResolution]
|
|
|
+ option to *node*, and the [link:https://www.typescriptlang.org/docs/handbook/compiler-options.html target] option to *es6* or newer.
|
|
|
+ </p>
|
|
|
+
|
|
|
+ <code>
|
|
|
+ // Example of minimal `tsconfig.json` file
|
|
|
+ {
|
|
|
+ "compilerOptions": {
|
|
|
+ "target": "es6",
|
|
|
+ "moduleResolution": "node",
|
|
|
+ },
|
|
|
+ "include": [ "./src/**/*.ts" ],
|
|
|
+ }
|
|
|
+ </code>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ Note: As of today, it's not yet possible to use three.js typings without using those two options.
|
|
|
+ </p>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ Note: It happens that some declarations are incorrect and/or missing.
|
|
|
+ Contributing to Declaration Files is really helpful for the community, making three.js
|
|
|
+ typings better and more accurate.
|
|
|
+ </p>
|
|
|
+ </body>
|
|
|
+</html>
|