Files
workshop-js/tsconfig.json

17 lines
349 B
JSON
Raw Permalink Normal View History

2025-11-12 15:09:04 -03:00
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true,
"noEmit": true,
"allowJs": true,
"checkJs": false,
"types": ["vite/client"],
"isolatedModules": true,
"skipLibCheck": true
},
"include": ["src"]
}