mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-09-10 23:21:03 +00:00
TypeScript 6 tightened implicit global resolution; fetch/RequestInit (TS2304) and process (TS2591) were no longer implicitly available. Add DOM to lib for fetch/RequestInit and types:["node"] for process.
20 lines
480 B
JSON
20 lines
480 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|