mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-14 11:48:28 -04:00
28 lines
802 B
JSON
28 lines
802 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
|
|
"strict": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": false,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "Bundler",
|
|
"isolatedDeclarations": false,
|
|
|
|
// This library is ESM-only, do not import commonjs modules
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": false,
|
|
"useDefineForClassFields": true,
|
|
|
|
// Crucial when using esbuild/swc/babel instead of tsc emit:
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["src/index.ts", "tests/**/*", "vitest.config.ts", "tsup.config.ts"],
|
|
"exclude": ["node_modules", "**/__tests__/*", "dist/**/*"]
|
|
}
|