jumpstorm/server/tsconfig.json

28 lines
665 B
JSON
Raw Normal View History

{
2023-08-23 21:44:59 -04:00
"extends": "../tsconfig.engine.json",
"compilerOptions": {
// add Bun type definitions
"types": ["bun-types"],
// enable latest features
"lib": ["esnext"],
"module": "esnext",
"target": "esnext",
// if TS 5.x+
"moduleResolution": "bundler",
"noEmit": true,
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"jsx": "react-jsx", // support JSX
"allowJs": true, // allow importing `.js` from `.ts`
"esModuleInterop": true, // allow default imports for CommonJS modules
// best practices
"strict": true,
"forceConsistentCasingInFileNames": true,
2023-08-23 21:44:59 -04:00
"skipLibCheck": true
}
}