move container init system to project root

This commit is contained in:
Aiden McClelland
2023-11-13 15:29:27 -07:00
parent fcdc642acb
commit 5f40d9400c
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"include": [
"./**/*.mjs",
"./**/*.js",
"initSrc/Runtime.ts",
"initSrc/index.ts",
"effects.ts"
],
"exclude": [],
"inputs": ["./lib/index.ts"],
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"moduleResolution": "node",
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}