29 lines
799 B
JSON
29 lines
799 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
|
|
"strict": true,
|
|
"declaration": false,
|
|
"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:
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["src/index.ts", "tests/**/*"],
|
|
"exclude": ["node_modules", "**/__tests__/*", "dist/**/*"]
|
|
}
|