domutil/tsconfig.json

28 lines
578 B
JSON
Raw Normal View History

2023-08-23 17:21:22 +00:00
{
"compilerOptions": {
"target": "ES2017",
"module": "ES2020",
"moduleResolution": "node",
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
2024-10-12 21:08:35 +00:00
"lib": [
"ES2017",
"dom"
]
2023-08-23 17:21:22 +00:00
},
2024-10-12 21:08:35 +00:00
"exclude": [
"dist",
"scripts",
"npm"
],
}