23 lines
495 B
JSON
23 lines
495 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": ".next/standalone",
|
|
"declaration": false,
|
|
"noEmit": false,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2020"
|
|
},
|
|
"include": [
|
|
"scripts/monitor-worker.ts",
|
|
"src/lib/monitor/**/*.ts",
|
|
"src/lib/db.ts",
|
|
"src/lib/db-schema.ts",
|
|
"src/lib/assets-client.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|