mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
ts-node is a devDependency and not available in production containers. Updated tsconfig to compile scripts/ alongside src/, and changed npm scripts to use compiled JS. Added monitor:dev for local development.
13 lines
288 B
JSON
13 lines
288 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*", "scripts/**/*"]
|
|
}
|