alina sireneva
af54f6e1c3
now they run as-is, without any bundling. this might seem like a downgrade, but we no longer really need to verify that we publish stuff correctly as we delegate that to `@fuman/build` meow
39 lines
798 B
JSON
39 lines
798 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"lib": [
|
|
"es2020",
|
|
"dom",
|
|
"dom.iterable",
|
|
"WebWorker"
|
|
],
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"bun",
|
|
"node",
|
|
"deno/ns",
|
|
"vite/client"
|
|
],
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"declaration": true,
|
|
"inlineSources": true,
|
|
"noEmit": true,
|
|
"sourceMap": true,
|
|
"stripInternal": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedDeclarations": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/private",
|
|
"**/__snapshots__"
|
|
]
|
|
}
|