Glen Whitney
77bd983cbc
I failed to find a satisfactory way to compile and import moo.js with fixed specifiers, so finally I just gave up and patched the distributed code to be an es6 module. A bit ugly but it works.
19 lines
334 B
JSON
19 lines
334 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"rootDir": "build",
|
|
"outDir": "dist/vrml1to97"
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "esnext"
|
|
}
|
|
}
|
|
}
|
|
|