miru/common/jsconfig.json
2023-11-12 14:43:06 +01:00

15 lines
No EOL
338 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["./*"],
},
"checkJs": true,
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"types": ["./types.d.ts"],
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules/**", "**/node_modules", "dist", "build"]
}