mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 09:40:44 +00:00
e79c805804
## Description: migrate tailwindcss v3 to v4 ## Please complete the following: - [X] I have added screenshots for all UI updates - [X] I process any text displayed to the user through translateText() and I've added it to the en.json file - [X] I have added relevant tests to the test directory - [X] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: wraith4081 --------- Co-authored-by: iamlewis <lewismmmm@gmail.com> Co-authored-by: Ryan <7389646+ryanbarlow97@users.noreply.github.com>
40 lines
926 B
JSON
40 lines
926 B
JSON
// https://www.typescriptlang.org/tsconfig/
|
|
{
|
|
"compilerOptions": {
|
|
// Language and Environment
|
|
"target": "ES2020",
|
|
// Modules
|
|
"module": "ESNext",
|
|
"rootDir": ".",
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"resources/*": ["resources/*"]
|
|
},
|
|
// Emit
|
|
"sourceMap": true,
|
|
// Type Checking
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"useDefineForClassFields": false,
|
|
"strictPropertyInitialization": false,
|
|
"skipLibCheck": true,
|
|
"types": ["vitest/globals", "node"]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"resources/**/*",
|
|
"proprietary/**/*",
|
|
"generated/**/*",
|
|
"tests/**/*",
|
|
"src/scripts",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|