Files
wxt/tsconfig.base.json
T
2023-06-25 10:53:35 -05:00

20 lines
350 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
/* Linting */
"noUnusedLocals": true,
/* Completeness */
"skipLibCheck": true
}
}