mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
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"
|
|
}
|
|
}
|
|
}
|