crawlnicle/frontend/tsconfig.json
2023-09-01 01:05:06 -04:00

26 lines
656 B
JSON

{
"compilerOptions": {
"lib": ["ESNext", "dom"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"noEmit": true,
"noImplicitAny": true,
"types": [
// disabled because of https://github.com/oven-sh/bun/issues/3030
// "bun-types" // add Bun global
]
},
"include": ["js"],
"exclude": ["node_modules"]
}