Some checks failed
CI / container-job (push) Failing after 35s
- Updated .gitignore to include new patterns - Refined TypeScript configuration for better performance and readability - Cleaned up commented code in several files - Enhanced dataset validation logic - Updated npm dependencies to the latest versions
19 lines
531 B
JSON
19 lines
531 B
JSON
{
|
|
"extends": "@adonisjs/tsconfig/tsconfig.client.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"module": "ESNext",
|
|
"jsxImportSource": "vue",
|
|
"allowJs": true,
|
|
// "target": "ESNext",
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"~/*": ["../*"]
|
|
},
|
|
},
|
|
"include": ["./**/*.ts", "./**/*.vue"],
|
|
"exclude": ["./utils/*.js", "./utils/Timer.js", "./utils/focusTrap.js"],
|
|
}
|