You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
991 B
36 lines
991 B
{ |
|
"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/*" |
|
] |
|
}
|
|
|