(build): tsconfig is now only used for types.

This commit is contained in:
2026-06-13 22:07:09 +00:00
parent d17821bb1b
commit b153d80e4a
+9 -15
View File
@@ -1,21 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "esnext",
"moduleResolution": "bundler",
"forceConsistentCasingInFileNames": false,
"inlineSourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"noImplicitAny": false,
"noUnusedLocals": true,
"esModuleInterop": true,
"strict": true,
"noUnusedLocals": true,
"noImplicitAny": false,
"moduleResolution": "bundler",
"esModuleInterop": true,
"lib": ["ES2021.String"],
"skipLibCheck": true,
"lib": [
"ES2021.String"
]
"inlineSourceMap": true,
"forceConsistentCasingInFileNames": false
},
"include": ["src"],
"exclude": ["node_modules"]
}