turbo-sync/tsconfig.json
2024-10-16 05:44:48 +01:00

28 lines
724 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"emitDeclarationOnly": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"declaration": true,
"outDir": "dump/dist",
"noPropertyAccessFromIndexSignature": false
},
"include": ["index.ts", "index.d.ts", "**/*.ts"],
"exclude": ["dump"]
}