glowing-fiesta/tsconfig.test.json
Liviu Burcusel 176665d7d4
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m9s
Production Build and Deploy / Deploy (push) Successful in 28s
Added 'Terms of Service' and 'Privacy policy' pages
2026-01-15 15:53:35 +01:00

19 lines
436 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"paths": {
"~": ["./app"],
"~/*": ["./app/*"],
"@": ["./app"],
"@/*": ["./app/*"],
"#shared": ["./shared"],
"#shared/*": ["./shared/*"],
"#app": ["./node_modules/nuxt/dist/app"],
}
},
"include": ["./tests/**/*"]
}