You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
762 B
32 lines
762 B
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"paths": { "@/*": ["./src/*"] },
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"src/worker/**/*.ts",
|
|
"src/services/db.ts",
|
|
"src/services/audit.ts",
|
|
"src/services/state-machine.ts",
|
|
"src/services/imap/**/*.ts",
|
|
"src/services/parse/**/*.ts",
|
|
"src/lib/env.ts",
|
|
"src/lib/logger.ts",
|
|
"src/types/**/*.ts",
|
|
"src/utils/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "src/app/**", "src/components/**"]
|
|
}
|