Files
stats/packages/sdk/tsconfig.json
Carl-Gerhard Lindesvärd 903fd155c3 init
2023-10-11 12:34:35 +02:00

26 lines
555 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"outDir": "dist",
"allowImportingTsExtensions": false,
"noEmit": false,
"types": [
"bun-types" // add Bun global
],
}
}