mastodon/tsconfig.json

27 lines
621 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-05-23 10:52:27 +02:00
"jsx": "react-jsx",
"target": "esnext",
2023-05-09 14:55:35 +02:00
"module": "CommonJS",
"moduleResolution": "node",
"allowJs": true,
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": "./",
2024-01-12 10:09:57 +01:00
"incremental": true,
"tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
"paths": {
"mastodon": ["app/javascript/mastodon"],
"mastodon/*": ["app/javascript/mastodon/*"],
"@/*": ["app/javascript/*"]
}
},
"include": [
"app/javascript/mastodon",
"app/javascript/entrypoints",
"app/javascript/types"
]
}