-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 820 Bytes
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
// "target": "ES2020",
// "module": "CommonJS", // Voor compatibiliteit met Node.js en Bun
"target": "ESNext",
"module": "esnext", // Veranderd naar esnext voor import assertions
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": ["node"], // Voor process en setInterval
"baseUrl": "."
},
"include": [
"*.env", "*.ts", "/src/*.ts", "/src/core/*.ts", "/src/features/*.ts", "/src/session/*.ts", "/src/utils/*.ts", "/src/features/stopwatch/*.ts", "/src/features/timer/*.ts", "/src/features/pomodoro/*.ts" // Je root index.ts
, "src/index.ts" ],
"exclude": ["node_modules", "dist"]
}