trigo / trigo-web /inc /tsconfig.json
k-l-lambda's picture
updated
502af73
raw
history blame contribute delete
366 Bytes
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true
},
"include": ["**/*.ts", "**/*.d.ts"],
"exclude": ["node_modules", "dist"]
}