Files
ConvertX/tsconfig.json
T

35 lines
988 B
JSON
Raw Normal View History

2024-04-06 19:05:02 +02:00
{
"compilerOptions": {
2024-05-19 00:07:56 +02:00
"lib": ["ESNext"],
"module": "ESNext",
"target": "ES2021",
2024-05-19 00:07:56 +02:00
"moduleResolution": "bundler",
"moduleDetection": "force",
// "allowImportingTsExtensions": true,
"outDir": "dist",
"noEmit": false,
2024-05-19 00:07:56 +02:00
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"jsxImportSource": "@kitajs/html",
2024-05-19 00:07:56 +02:00
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
// non bun init
2024-05-19 23:51:27 +02:00
"plugins": [{ "name": "@kitajs/ts-html-plugin" }],
2024-05-19 00:07:56 +02:00
"noUncheckedIndexedAccess": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"resolveJsonModule": true,
"esModuleInterop": true
2024-05-19 00:07:56 +02:00
// "noImplicitReturns": true
},
2025-11-15 20:15:02 +01:00
"include": ["src", "package.json"],
"exclude": ["dist", "node_modules"]
}