30 lines
520 B
JSON
30 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"src/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"bun"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"vendor/**/*",
|
|
"shims/**/*"
|
|
]
|
|
}
|