20 lines
472 B
JSON
20 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "react",
|
|
"types": ["bun", "node"],
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "dist",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"references": [{ "path": "../shared" }]
|
|
}
|