vrml1to97/tsconfig.json
Glen Whitney 67a07e2000 chore: Set up development environment
Add the civet and typescript compilers, implement a build step,
  provide examples of using from es6, script, and command line.
  Of course, there is no actual behavior produced; convert always produces
  'foo' at the moment.
2023-09-01 08:20:34 -07:00

19 lines
328 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "esnext",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"declaration": true,
"rootDir": "./build",
"outDir": "./dist"
},
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "esnext"
}
}
}