glitch-soc/tsconfig.json

27 lines
619 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-05-23 04:52:27 -04:00
"jsx": "react-jsx",
"target": "esnext",
2023-05-09 08:55:35 -04:00
"module": "CommonJS",
"moduleResolution": "node",
"allowJs": true,
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": "./",
2024-01-12 04:09:57 -05: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/packs",
"app/javascript/types",
],
}