Glen Whitney
b5478254af
Enabling type checking involves a full rearrangement of the build process, as well as supplying types for some of the dependencies. Now that (hopefully) all of the methods are typed, can call (for example) browser.setBrowserOption to manage the viewer navigation. Resolves #14. Resolves #17. Reviewed-on: #18 Co-authored-by: Glen Whitney <glen@studioinfinity.org> Co-committed-by: Glen Whitney <glen@studioinfinity.org>
20 lines
362 B
JSON
20 lines
362 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"rootDir": "tsbuild",
|
|
"outDir": "jsbuild",
|
|
},
|
|
"include": [ "tsbuild/**/*" ],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "esnext"
|
|
}
|
|
}
|
|
}
|
|
|