2025-03-30 13:38:55 -03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2025-04-02 02:43:36 -03:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2025-04-02 20:42:47 -03:00
|
|
|
"@/*": [
|
|
|
|
"./src/*"
|
|
|
|
]
|
2025-04-02 02:43:36 -03:00
|
|
|
},
|
2025-04-02 20:42:47 -03:00
|
|
|
"target": "ES2020",
|
2025-03-30 13:38:55 -03:00
|
|
|
"useDefineForClassFields": true,
|
2025-03-30 21:47:18 -03:00
|
|
|
"lib": [
|
|
|
|
"ES2020",
|
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable"
|
|
|
|
],
|
2025-03-30 13:38:55 -03:00
|
|
|
"module": "ESNext",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2025-06-28 22:36:36 -03:00
|
|
|
"noImplicitAny": false,
|
2025-04-02 20:42:47 -03:00
|
|
|
"jsx": "preserve",
|
2025-03-30 13:38:55 -03:00
|
|
|
/* Linting */
|
2025-03-30 17:32:22 -03:00
|
|
|
"strict": false,
|
2025-03-30 13:38:55 -03:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2025-04-02 20:42:47 -03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"incremental": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
]
|
2025-03-30 13:38:55 -03:00
|
|
|
},
|
2025-03-30 21:47:18 -03:00
|
|
|
"include": [
|
2025-04-02 20:42:47 -03:00
|
|
|
"src",
|
2025-06-21 19:06:13 -03:00
|
|
|
".next/types/**/*.ts",
|
|
|
|
"app",
|
|
|
|
],
|
2025-04-02 20:42:47 -03:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"src-rust"
|
2025-03-30 21:47:18 -03:00
|
|
|
]
|
2025-06-21 19:06:13 -03:00
|
|
|
}
|