Glen Whitney
67a07e2000
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.
19 lines
328 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
|