forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 991 Bytes
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"compilerOptions": {
"jsx": "react-jsx",
"target": "esnext",
"module": "ES2022",
"moduleResolution": "bundler",
"allowJs": true,
"resolveJsonModule": true,
"noEmit": true,
"strict": true,
"isolatedModules": true, // Required by Vite
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["vite/client", "vitest/globals"],
"baseUrl": "./",
"incremental": true,
"tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
"paths": {
"@/*": ["app/javascript/*"],
"mastodon": ["app/javascript/mastodon"],
"mastodon/*": ["app/javascript/mastodon/*"],
"images/*": ["app/javascript/images/*"],
"styles/*": ["app/javascript/styles/*"]
},
"plugins": [{ "name": "typescript-plugin-css-modules" }]
},
"include": [
"vite.config.mts",
"vitest.config.mts",
"config/vite",
"app/javascript",
".storybook/*"
]
}