chore: Set up simple civet build

This commit is contained in:
Glen Whitney 2023-08-28 09:01:25 -07:00
parent b9cd84eae3
commit 3a14bb1e89
5 changed files with 74 additions and 2 deletions

4
src/index.civet Normal file
View file

@ -0,0 +1,4 @@
console.log """
Hello, world --
This is the beginning of something!
"""

9
src/tsconfig.json Normal file
View file

@ -0,0 +1,9 @@
{
"compilerOptions": {
"strict": true,
"lib": ["esnext"],
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"esModuleInterop": true
}
}