mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
This includes the docker commands to get things compressed. And this is the start of the rpc, but needs lots of work, or very little, not sure yet anymore. I beleive that the things that are missing are the rpc, and the effects. So, lots of work, but is still good to have I suppose.
27 lines
501 B
JSON
27 lines
501 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|