oxc/website/tsconfig.json
Don Isaac f96b6b18c9
build(website): use typescript (#3653)
Co-authored-by: Boshen <boshenc@gmail.com>
2024-06-13 15:02:32 +08:00

13 lines
303 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}