29 lines
704 B
JSON
29 lines
704 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": false,
|
|
"noEmit": false,
|
|
"composite": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./packages",
|
|
"outDir": "./dist",
|
|
"types": [
|
|
"bun-types" // add Bun global
|
|
]
|
|
},
|
|
"include": ["./packages/**/*"],
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|